CreateTakeoffItemPayload
ObjectAutogenerated return type of CreateTakeoffItem.
mutation { organization(id: $organizationId) { project(id: $projectId) { createTakeoffItem } } }
Example
mutation CreateTakeoffItem(
$organizationId: ID!
$projectId: ID!
$input: CreateTakeoffItemInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createTakeoffItem(input: $input) {
errors
}
}
}
}