TakeoffSetDeletePayload
ObjectAutogenerated return type of TakeoffSetDelete.
mutation { organization(id: $organizationId) { project(id: $projectId) { takeoffSetDelete } } }
Example
mutation TakeoffSetDelete(
$organizationId: ID!
$projectId: ID!
$input: TakeoffSetDeleteInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
takeoffSetDelete(input: $input) {
errors
}
}
}
}