GraphQL reference

CreateChangeEventInput

Input

Autogenerated input 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
clientMutationIdStringA unique identifier for the client performing the mutation.
idID!
mutationMetadataJSON
nowISO8601DateTime
titleString!