github.com/weaviate/weaviate@v1.24.6/adapters/handlers/graphql/descriptions/fetch.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 // Local 16 const ( 17 LocalFetch = "Fetch Beacons that are similar to a specified concept from the Objects subsets on a Weaviate network" 18 LocalFetchObj = "An object used to perform a Fuzzy Fetch to search for Objects and Actions similar to a specified concept on a Weaviate network" 19 ) 20 21 const ( 22 LocalFetchObjects = "Perform a Fuzzy Fetch to Fetch Beacons similar to a specified concept on a Weaviate network from the Objects subset" 23 LocalFetchFuzzy = "Perform a Fuzzy Fetch to Fetch Beacons similar to a specified concept on a Weaviate network from both the Objects subsets" 24 ) 25 26 const ( 27 LocalFetchBeacon = "A Beacon result from a local Weaviate Local Fetch query" 28 LocalFetchClassName = "The class name of the result from a local Weaviate Local Fetch query" 29 LocalFetchCertainty = "The degree of similarity on a scale of 0-1 between the Beacon's characteristics and the provided concept" 30 LocalFetchActionsObj = "An object used to Fetch Beacons from the Actions subset of the dataset" 31 ) 32 33 const ( 34 LocalFetchFuzzyBeacon = "A Beacon result from a local Weaviate Fetch Fuzzy query from both the Objects subsets" 35 LocalFetchFuzzyClassName = "Class name of the result from a local Weaviate Fetch Fuzzy query from both the Objects subsets" 36 LocalFetchFuzzyCertainty = "The degree of similarity on a scale of 0-1 between the Beacon's characteristics and the provided concept" 37 LocalFetchFuzzyObj = "An object used to Fetch Beacons from both the Objects subsets" 38 ) 39 40 // NETWORK 41 const ( 42 NetworkFetch = "Fetch Beacons that are similar to a specified concept from the Objects subsets on a Weaviate network" 43 NetworkFetchObj = "An object used to perform a Fuzzy Fetch to search for Objects similar to a specified concept on a Weaviate network" 44 ) 45 46 const ( 47 NetworkFetchFuzzy = "Perform a Fuzzy Fetch to Fetch Beacons similar to a specified concept on a Weaviate network from both the Objects subsets" 48 ) 49 50 const ( 51 NetworkFetchFuzzyClassName = "The class name of the result from a network Weaviate Fetch Fuzzy query from both the Objects subsets" 52 NetworkFetchFuzzyBeacon = "A Beacon result from a network Weaviate Fetch Fuzzy query from both the Objects subsets" 53 NetworkFetchFuzzyCertainty = "The degree of similarity on a scale of 0-1 between the Beacon's characteristics and the provided concept" 54 NetworkFetchFuzzyObj = "An object used to Fetch Beacons from both the Objects subsets" 55 )