API Stability Preview

The resetFlightRecorderSettings() GraphQL mutation is used to reset the flight recorder settings to default for a given vhost.

Syntax

Below is the syntax for the resetFlightRecorderSettings() mutation field:

graphql
resetFlightRecorderSettings(
       vhost: integer!
    ): boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  resetFlightRecorderSettings(
     vhost: 100 )
}
Example Responses
Show:
json
{
  "data": {
    "resetFlightRecorderSettings": true
  }
}

There are no special datatypes for this mutation field.