Skip to content

runCustomAnalyzer

Runs a custom analyzer against sample content and returns the matches.

Arguments

Argument Type Description
input (required) RunCustomAnalyzerInput! The custom analyzer configuration to run.

Returns

RunCustomAnalyzerReply!

Sample

mutation RunCustomAnalyzer($input: RunCustomAnalyzerInput!) {
  runCustomAnalyzer(input: $input)
}
{
  "input": {}
}
{
  "data": {
    "runCustomAnalyzer": {
      "matches": [
        {
          "endIndex": 0,
          "startIndex": 0
        }
      ]
    }
  }
}