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

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