NewEditorUpdateIssuePayload
ObjectAutogenerated return type of NewEditorUpdateIssue.
mutation { organization(id: $organizationId) { project(id: $projectId) { newEditorUpdateIssue } } }
Example
mutation NewEditorUpdateIssue(
$organizationId: ID!
$projectId: ID!
$input: NewEditorUpdateIssueInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
newEditorUpdateIssue(input: $input) {
errors
}
}
}
}