A GraphQL response containing data and/or errors
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GraphQLResponse", "title": "GraphQLResponse", "type": "object", "description": "A GraphQL response containing data and/or errors", "properties": { "data": { "description": "The result data from the query or mutation", "nullable": true }, "errors": { "type": "array", "description": "List of errors encountered during execution", "items": { "$ref": "#/components/schemas/GraphQLError" } } } }