Skip to content

deactivateCustomAnalyzer

Deactivate a custom analyzer.

Arguments

Argument Type Description
analyzerId (required) String!
disableAnalyzer Boolean If true, disable the underlying requested analyzer.

Returns

String!

Sample

mutation DeactivateCustomAnalyzer($analyzerId: String!) {
  deactivateCustomAnalyzer(analyzerId: $analyzerId)
}
{
  "analyzerId": "example-string"
}
{
  "data": {
    "deactivateCustomAnalyzer": "example-string"
  }
}