github.com/weaviate/weaviate@v1.24.6/adapters/handlers/graphql/descriptions/rootQuery.go (about)

     1  //                           _       _
     2  // __      _____  __ ___   ___  __ _| |_ ___
     3  // \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
     4  //  \ V  V /  __/ (_| |\ V /| | (_| | ||  __/
     5  //   \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
     6  //
     7  //  Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
     8  //
     9  //  CONTACT: hello@weaviate.io
    10  //
    11  
    12  // Package descriptions provides the descriptions as used by the graphql endpoint for Weaviate
    13  package descriptions
    14  
    15  // ROOT
    16  const (
    17  	WeaviateObj     = "The location of the root query"
    18  	WeaviateNetwork = "Query a Weaviate network"
    19  )
    20  
    21  // LOCAL
    22  const LocalObj = "A query on a local Weaviate"
    23  
    24  // NETWORK
    25  const (
    26  	NetworkWeaviate = "An object for the network Weaviate instance: "
    27  	NetworkObj      = "An object used to perform queries on a Weaviate network"
    28  )