summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/alert_details/graphql/mutations/alert_issue_create.mutation.graphql
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
    }
  }
}