GraphQL reference

DeleteChangeOrderPayload

Object

Autogenerated return type of DeleteChangeOrder.

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

Example

mutation DeleteChangeOrder(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteChangeOrderInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteChangeOrder(input: $input) {
        changeOrder
        errors
      }
    }
  }
}

Fields

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