summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/alert_details/graphql/mutations/alert_issue_create.mutation.graphql
blob: f0095abfca1fc21de9c1d1b4bc415e0f097326bb (plain)
1
2
3
4
5
6
7
8
9
mutation createAlertIssue($projectPath: ID!, $iid: String!) {
  createAlertIssue(input: { iid: $iid, projectPath: $projectPath }) {
    errors
    issue {
      iid
      webUrl
    }
  }
}