GraphQL reference

DeleteTakeoffItemPayload

Object

Autogenerated return type of DeleteTakeoffItem.

mutation { organization(id: $organizationId) { project(id: $projectId) { deleteTakeoffItem } } }

Example

mutation DeleteTakeoffItem(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteTakeoffItemInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteTakeoffItem(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!