Delete non-converted job IO-589

This commit is contained in:
Patrick Fic
2021-01-19 11:22:17 -08:00
parent e65d8c54b3
commit 12a458a09d
6 changed files with 115 additions and 4 deletions

View File

@@ -1320,3 +1320,11 @@ export const QUERY_JOB_LBR_ADJUSTMENTS = gql`
}
}
`;
export const DELETE_JOB = gql`
mutation DELETE_JOB($id: uuid!) {
delete_jobs_by_pk(id: $id) {
id
}
}
`;