GraphQL reference

ChangeCommitmentStatusPayload

Object

Autogenerated return type of ChangeCommitmentStatus.

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

Example

mutation ChangeCommitmentStatus(
  $organizationId: ID!
  $projectId: ID!
  $input: ChangeCommitmentStatusInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      changeCommitmentStatus(input: $input) {
        commitment
        errors
      }
    }
  }
}

Fields

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