TakeoffCategoryDeletePayload
ObjectAutogenerated return type of TakeoffCategoryDelete.
mutation { organization(id: $organizationId) { project(id: $projectId) { takeoffCategoryDelete } } }
Example
mutation TakeoffCategoryDelete(
$organizationId: ID!
$projectId: ID!
$input: TakeoffCategoryDeleteInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
takeoffCategoryDelete(input: $input) {
errors
}
}
}
}