CreateTakeoffCategoryInput
InputAutogenerated input type of CreateTakeoffCategory
mutation { organization(id: $organizationId) { project(id: $projectId) { createTakeoffCategory } } }
Example
mutation CreateTakeoffCategory(
$organizationId: ID!
$projectId: ID!
$input: CreateTakeoffCategoryInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createTakeoffCategory(input: $input) {
errors
}
}
}
}