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
|
|
|
}
|
|
|
|
}
|