10 lines
258 B
GraphQL
10 lines
258 B
GraphQL
mutation updateIssuableSeverity($projectPath: ID!, $severity: IssuableSeverity!, $iid: String!) {
|
|
issueSetSeverity(input: { iid: $iid, severity: $severity, projectPath: $projectPath }) {
|
|
errors
|
|
issue {
|
|
iid
|
|
id
|
|
severity
|
|
}
|
|
}
|
|
}
|