GraphQL reference

CreateTakeoffCategoryInput

Input

Autogenerated 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
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
idID!
mutationMetadataJSON
nameString!
nowISO8601DateTime
takeoffSetIdID!