github.com/weaviate/weaviate@v1.24.6/adapters/handlers/graphql/descriptions/introspect.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 // NETWORK 16 const ( 17 NetworkIntrospect = "Get Introspection information about Objects and/or Beacons in a Weaviate network" 18 NetworkIntrospectObj = "An object used to perform an Introspection query on a Weaviate network" 19 ) 20 21 const ( 22 NetworkIntrospectWeaviate = "The Weaviate instance that the current Object or Beacon belongs to" 23 NetworkIntrospectClassName = "The name of the current Object or Beacon's class" 24 NetworkIntrospectCertainty = "The degree of similarity between a(n) Object or Beacon and the filter input" 25 ) 26 27 const ( 28 NetworkIntrospectBeaconProperties = "The properties of a Beacon" 29 NetworkIntrospectBeaconPropertiesPropertyName = "The names of the properties of a Beacon" 30 )