Added copy from job to ccc IO-565

This commit is contained in:
Patrick Fic
2021-02-04 18:35:14 -08:00
parent ef03a6cd42
commit 69ac212f0c
8 changed files with 121 additions and 3 deletions

View File

@@ -1335,3 +1335,18 @@ export const DELETE_JOB = gql`
}
}
`;
export const GET_JOB_FOR_CC_CONTRACT = gql`
query GET_JOB_FOR_CC_CONTRACT($id: uuid!) {
jobs_by_pk(id: $id) {
id
ownr_fn
ownr_ln
ownr_addr1
ownr_st
ownr_city
ownr_zip
ownr_ph1
}
}
`;