summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alert_management/graphql/mutations/update_alert_status.graphql
blob: 09151f233f51a6fdd4f511dc7675a99e34a30d1e (plain)
1
2
3
4
5
6
7
8
9
10
mutation ($projectPath: ID!, $status: AlertManagementStatus!, $iid: String!) {
  updateAlertStatus(input: { iid: $iid, status: $status, projectPath: $projectPath }) {
    errors
    alert {
      iid,
      status,
      endedAt
    }
  }
}