MoveTakeoffCategoryUpPayload
ObjectAutogenerated return type of MoveTakeoffCategoryUp.
mutation { organization(id: $organizationId) { project(id: $projectId) { moveTakeoffCategoryUp } } }
Example
mutation MoveTakeoffCategoryUp(
$organizationId: ID!
$projectId: ID!
$input: MoveTakeoffCategoryUpInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
moveTakeoffCategoryUp(input: $input) {
errors
}
}
}
}