An error response caused by a GraphQL query.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-graph-qlerror-schema.json", "title": "GraphQLError", "description": "An error response caused by a GraphQL query.", "type": "object", "properties": { "locations": { "type": "array", "items": { "type": "object", "properties": { "column": { "type": "integer", "format": "int64" }, "line": { "type": "integer", "format": "int64" } } } }, "message": { "type": "string" }, "path": { "type": "array", "items": { "type": "string" } } } }