debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/update_status.mutation.graphql

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

10 lines
265 B
GraphQL
Raw Normal View History

2021-12-11 22:18:48 +05:30
mutation updateIssueHealthStatus($projectPath: ID!, $iid: String!, $healthStatus: HealthStatus) {
2020-04-22 19:07:51 +05:30
updateIssue(input: { projectPath: $projectPath, iid: $iid, healthStatus: $healthStatus }) {
2021-09-30 23:02:18 +05:30
issuable: issue {
id
2020-04-08 14:13:33 +05:30
healthStatus
}
2020-04-22 19:07:51 +05:30
errors
2020-04-08 14:13:33 +05:30
}
}