Skip to main content

CreateIssueInput

Input for the createIssue mutation

input CreateIssueInput {
body: String!
state: ID!
template: ID!
templatedFields: [JSONFieldInput!]!
title: String!
trackables: [ID!]!
type: ID!
}

Fields

CreateIssueInput.body ● String! non-null scalar

The body of the created Issue

CreateIssueInput.state ● ID! non-null scalar

The id of the state of the created Issue, must be compatible with template

CreateIssueInput.template ● ID! non-null scalar

The template of the created Issue

CreateIssueInput.templatedFields ● [JSONFieldInput!]! non-null input

Initial values for all templatedFields

CreateIssueInput.title ● String! non-null scalar

The title of the created Issue

CreateIssueInput.trackables ● [ID!]! non-null scalar

Ids of Trackables the Issue is initially on, must not be empty

CreateIssueInput.type ● ID! non-null scalar

The id of the type of the created Issue, must be compatible with template

Member of

createIssue mutation