GraphQL reference

DeleteCommitmentInput

Input

Autogenerated input type of DeleteCommitment

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

Example

mutation DeleteCommitment(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteCommitmentInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteCommitment(input: $input) {
        commitment
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
idID!
mutationMetadataJSON
nowISO8601DateTime