CreateIssuePayload
ObjectAutogenerated return 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
}
}
}
}