WIP CA_BC_ETFTable decoder

This commit is contained in:
Patrick Fic
2021-04-15 14:09:22 -07:00
parent 97ce408974
commit 42a1d3a9a7
11 changed files with 199 additions and 5 deletions

View File

@@ -1524,3 +1524,16 @@ export const QUERY_JOB_CHECKLISTS = gql`
}
}
`;
export const FIND_JOBS_BY_CLAIM = gql`
query FIND_JOBS_BY_CLAIM($claimNumbers: [String!]!) {
jobs(where: { clm_no: { _in: $claimNumbers } }) {
id
ro_number
actual_completion
ownr_fn
ownr_ln
ownr_co_nm
}
}
`;