debian-mirror-gitlab/app/assets/javascripts/issues/show/queries/update_issue.mutation.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
147 B
GraphQL
Raw Normal View History

2021-01-29 00:20:46 +05:30
mutation updateIssue($input: UpdateIssueInput!) {
updateIssue(input: $input) {
2021-09-30 23:02:18 +05:30
issuable: issue {
id
state
}
2021-01-29 00:20:46 +05:30
errors
}
}