Execute Operation
Executes a GraphQL operation (query or mutation) via a POST request with a JSON body.
Request
This endpoint expects an object.
query
The GraphQL query or mutation string to execute.
operationName
Specifies which operation to execute if the query string contains multiple operations.
variables
A JSON object containing variables referenced in the query.
Response
This endpoint returns an object.
data
The payload returned by the GraphQL execution.
errors
A list of errors that occurred during execution.
extensions
Reserved for implementors to extend the protocol (e.g., tracing data).