CreatePunchListPayload
ObjectAutogenerated return type of CreatePunchList.
mutation { organization(id: $organizationId) { project(id: $projectId) { createPunchList } } }
Example
mutation CreatePunchList(
$organizationId: ID!
$projectId: ID!
$input: CreatePunchListInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createPunchList(input: $input) {
punchList
errors
}
}
}
}