Weaviate · Schema

GraphQLError

An error response caused by a GraphQL query.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
locations array
message string
path array
View JSON Schema on GitHub

JSON Schema

weaviate-graph-qlerror-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}