Merged in hotfix/2021-08-12 (pull request #175)

Resolve delete checklist item.

Approved-by: Patrick Fic
This commit is contained in:
Patrick Fic
2021-08-12 20:16:47 +00:00

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
}
}
`);