UnarchivePunchListPayload
ObjectAutogenerated return type of UnarchivePunchList.
mutation { organization(id: $organizationId) { project(id: $projectId) { unarchivePunchList } } }
Example
mutation UnarchivePunchList(
$organizationId: ID!
$projectId: ID!
$input: UnarchivePunchListInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
unarchivePunchList(input: $input) {
punchList
errors
}
}
}
}