NewEditorCreateIssuePayload
ObjectAutogenerated return type of NewEditorCreateIssue.
mutation { organization(id: $organizationId) { project(id: $projectId) { newEditorCreateIssue } } }
Example
mutation NewEditorCreateIssue(
$organizationId: ID!
$projectId: ID!
$input: NewEditorCreateIssueInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
newEditorCreateIssue(input: $input) {
errors
}
}
}
}