Strise Connect API Docs
Mutations

alertUpdate

Update one or more monitoring alerts.

mutation AlertUpdate($where: AlertUpdateInput!) {
  alertUpdate(where: $where) {
    success
  }
}
input AlertUpdateInput {
  ids: [AlertId!]!
  state: AlertState
}

Arguments

where AlertUpdateInput! non-null input

AlertUpdateInput!

Type

AlertUpdatePayload object

AlertUpdatePayload Payload returned after updating alerts.

Response Fields

success Boolean! non-null scalar

Boolean! Whether the update was successful.

On this page