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: bc4d91a51d1d4ba47c01034c88e2b2c0e1eefa84 (plain)
1
2
3
4
5
6
7
8
mutation createAlertIssue($projectPath: ID!, $iid: String!) {
  createAlertIssue(input: { iid: $iid, projectPath: $projectPath }) {
    errors
    issue {
      iid
    }
  }
}