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

alert_issue_create.mutation.graphql « mutations « graphql « alert_details « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0460d250f7522ac2203724847e3ddc96721c9b23 (plain)
1
2
3
4
5
6
7
8
9
10
mutation createAlertIssue($projectPath: ID!, $iid: String!) {
  createAlertIssue(input: { iid: $iid, projectPath: $projectPath }) {
    errors
    issue {
      id
      iid
      webUrl
    }
  }
}