summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alert_management/graphql/mutations/create_issue_from_alert.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
    }
  }
}