Skip to content

acknowledgeClusterNotification

Acknowledges a cluster notification.

Arguments

Argument Type Description
input (required) AcknowledgeClusterNotificationInput! Cluster UUID and notification type.

Returns

AcknowledgeClusterNotificationReply!

Sample

mutation AcknowledgeClusterNotification($input: AcknowledgeClusterNotificationInput!) {
  acknowledgeClusterNotification(input: $input) {
    success
  }
}
{
  "input": {}
}
{
  "data": {
    "acknowledgeClusterNotification": {
      "success": true
    }
  }
}