GraphQL reference

CreateChangeEventPayload

Object

Autogenerated return type of CreateChangeEvent.

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

Example

mutation CreateChangeEvent(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateChangeEventInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createChangeEvent(input: $input) {
        changeEvent
        errors
      }
    }
  }
}

Fields

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