Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_issuable_severity.mutation.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9d36dfdb6710c5aac3704b0942fb71d09f77b04 (plain)
1
2
3
4
5
6
7
8
9
10
mutation updateIssuableSeverity($projectPath: ID!, $severity: IssuableSeverity!, $iid: String!) {
  issueSetSeverity(input: { iid: $iid, severity: $severity, projectPath: $projectPath }) {
    errors
    issue {
      iid
      id
      severity
    }
  }
}