GraphQL reference

CreateIssueInput

Input

Autogenerated input type of CreateIssue

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

Example

mutation CreateIssue(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateIssueInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createIssue(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
companyAccessibleBoolean!
createdAtISO8601DateTime
idID!
membershipIdID!
mutationMetadataJSON
organizationAccessibleBoolean!
statusString!
titleString!
updatedAtISO8601DateTime