API Stability Preview

The disableWorkerQueryTracing() GraphQL mutation may be used to disable query tracing on worker nodes for queries with the given quota key.

Syntax

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

graphql
disableWorkerQueryTracing(
      quotaKey: string!
   ): boolean!

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

Show:
graphql
mutation {
  disableWorkerQueryTracing( 
     quotaKey: "abc123"
  )
}
Example Responses
Show:
json
{
  "data": {
    "disableWorkerQueryTracing": true
  },
  "extensions": {
    "preview": [
      {
        "name": "disableWorkerQueryTracing",
        "reason": "[PREVIEW: Internal debugging tool, do not use without explicit instruction from support]"
      }
    ]
  }
}