9 lines
265 B
GraphQL
9 lines
265 B
GraphQL
mutation updateIssueHealthStatus($projectPath: ID!, $iid: String!, $healthStatus: HealthStatus) {
|
|
updateIssue(input: { projectPath: $projectPath, iid: $iid, healthStatus: $healthStatus }) {
|
|
issuable: issue {
|
|
id
|
|
healthStatus
|
|
}
|
|
errors
|
|
}
|
|
}
|