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