CreateTakeoffSetPayload
ObjectAutogenerated return type of CreateTakeoffSet.
mutation { organization(id: $organizationId) { project(id: $projectId) { createTakeoffSet } } }
Example
mutation CreateTakeoffSet(
$organizationId: ID!
$projectId: ID!
$input: CreateTakeoffSetInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createTakeoffSet(input: $input) {
errors
}
}
}
}