debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/update_issuable_severity.mutation.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
258 B
GraphQL
Raw Normal View History

2020-11-24 15:15:51 +05:30
mutation updateIssuableSeverity($projectPath: ID!, $severity: IssuableSeverity!, $iid: String!) {
issueSetSeverity(input: { iid: $iid, severity: $severity, projectPath: $projectPath }) {
errors
issue {
iid
2022-01-26 12:08:38 +05:30
id
2020-11-24 15:15:51 +05:30
severity
}
}
}