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

update_alert_status.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: 009ae0b293080c9e4aef5f551d357f67b8b00707 (plain)
1
2
3
4
5
6
7
8
9
mutation ($projectPath: ID!, $status: AlertManagementStatus!, $iid: String!) {
  updateAlertStatus(input: { iid: $iid, status: $status, projectPath: $projectPath }) {
    errors
    alert {
      iid,
      status,
    }
  }
}