Resolve delete checklist item.

This commit is contained in:
Patrick Fic
2021-08-12 13:16:26 -07:00
parent be2cfb908a
commit 8ff2a6e6c4

View File

@@ -22,10 +22,10 @@ export default function JobAdminDeleteIntake({ job }) {
mutation DELETE_DELIVERY($jobId: uuid!) {
update_jobs_by_pk(
pk_columns: { id: $jobId }
_set: { deliverychecklist: null }
_set: { deliverchecklist: null }
) {
id
deliverychecklist
deliverchecklist
}
}
`);