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