GraphQL reference

UpdateCommitmentContractPayload

Object

Autogenerated return type of UpdateCommitmentContract.

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

Example

mutation UpdateCommitmentContract(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateCommitmentContractInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateCommitmentContract(input: $input) {
        commitment
        errors
      }
    }
  }
}

Fields

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