feature/IO-2769-Job-Totals-Testing - non-related

This commit is contained in:
Dave Richer
2025-04-08 18:10:28 -04:00
parent e33ff2a45d
commit c5181d1c5d
3 changed files with 42 additions and 4 deletions

View File

@@ -2841,6 +2841,15 @@ query GET_JOBID_BY_MERCHANTID_RONUMBER($merchantID: String!, $roNumber: String!)
bodyshop {
id
intellipay_config
email
}
}
}`;
exports.GET_BODYSHOP_BY_MERCHANT_ID = `
query GET_BODYSHOP_BY_MERCHANTID($merchantID: String!) {
bodyshops(where: {intellipay_merchant_id: {_eq: $merchantID}}) {
id
email
}
}`;