Weaviate · Schema

GraphQLResponse

GraphQL based response: http://facebook.github.io/graphql/.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
data object GraphQL data object.
errors array Array with errors.
View JSON Schema on GitHub

JSON Schema

weaviate-graph-qlresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-graph-qlresponse-schema.json",
  "title": "GraphQLResponse",
  "description": "GraphQL based response: http://facebook.github.io/graphql/.",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "GraphQL data object.",
      "additionalProperties": {
        "$ref": "#/components/schemas/JsonObject"
      }
    },
    "errors": {
      "type": "array",
      "description": "Array with errors.",
      "items": {
        "$ref": "#/components/schemas/GraphQLError"
      }
    }
  }
}