7 lines
211 B
GraphQL
7 lines
211 B
GraphQL
mutation ($projectPath: ID!, $iid: String!, $healthStatus: HealthStatus) {
|
|
updateIssue(input: { projectPath: $projectPath, iid: $iid, healthStatus: $healthStatus}) {
|
|
issue {
|
|
healthStatus
|
|
}
|
|
}
|
|
}
|