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

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