DeleteTakeoffItemInput
InputAutogenerated input type of DeleteTakeoffItem
mutation { organization(id: $organizationId) { project(id: $projectId) { deleteTakeoffItem } } }
Example
mutation DeleteTakeoffItem(
$organizationId: ID!
$projectId: ID!
$input: DeleteTakeoffItemInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deleteTakeoffItem(input: $input) {
errors
}
}
}
}