Weaviate · Schema

GraphQLQuery

GraphQL query based on: http://facebook.github.io/graphql/.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
operationName string The name of the operation if multiple exist in the query.
query string Query based on GraphQL syntax.
variables object Additional variables for the query.
View JSON Schema on GitHub

JSON Schema

weaviate-graph-qlquery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-graph-qlquery-schema.json",
  "title": "GraphQLQuery",
  "description": "GraphQL query based on: http://facebook.github.io/graphql/.",
  "type": "object",
  "properties": {
    "operationName": {
      "type": "string",
      "description": "The name of the operation if multiple exist in the query."
    },
    "query": {
      "type": "string",
      "description": "Query based on GraphQL syntax."
    },
    "variables": {
      "type": "object",
      "description": "Additional variables for the query."
    }
  }
}