DeletePunchListPayload
ObjectAutogenerated return type of DeletePunchList.
mutation { organization(id: $organizationId) { project(id: $projectId) { deletePunchList } } }
Example
mutation DeletePunchList(
$organizationId: ID!
$projectId: ID!
$input: DeletePunchListInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deletePunchList(input: $input) {
punchList
errors
}
}
}
}