GraphQL reference

DeleteSpecDivisionPayload

Object

Autogenerated return type of DeleteSpecDivision.

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

Example

mutation DeleteSpecDivision(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteSpecDivisionInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteSpecDivision(input: $input) {
        specDivision
        errors
      }
    }
  }
}

Fields

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