IO-233 Mixdata schema updates and API.

This commit is contained in:
Patrick Fic
2022-04-28 09:54:15 -07:00
parent ad6d1202f2
commit 865f4776d0
5 changed files with 199 additions and 4 deletions

View File

@@ -1523,3 +1523,15 @@ exports.INSERT_NEW_TRANSITION = `mutation INSERT_NEW_TRANSITION($newTransition:
}
`;
exports.QUERY_JOB_ID_MIXDATA = `query QUERY_JOB_ID_MIXDATA($roNumbers: [String!]!) {
jobs(where: {ro_number: {_in: $roNumbers}}) {
id
ro_number
mixdata {
id
}
}
}
`;