debian-mirror-gitlab/app/assets/javascripts/alert_management/graphql/mutations/update_alert_status.graphql
2020-05-25 16:23:42 +05:30

10 lines
227 B
GraphQL

mutation ($projectPath: ID!, $status: AlertManagementStatus!, $iid: String!) {
updateAlertStatus(input: { iid: $iid, status: $status, projectPath: $projectPath }) {
errors
alert {
iid,
status,
}
}
}