0.22.11 - Underscore Props:_nearestNeighbors and Bugfixes
Docker image/tag: semitechnologies/weaviate:0.22.11
See also: example docker compose files in English, German, Dutch, Italian and Czech.
Breaking Changes
none
New Features
-
Add
_nearestNeighborsunderscore prop to REST and GraphQL API (#1169)
Display information about the neighboring concepts of an object in a single (GET /v1/{kind}/{id}) or list (GET /v1/{kinds}) REST response by setting the?include=_nearestNeighborsproperty. The same can be achieved in a GraphQLGet {}query by requesting the_nearestNeighbors{}prop alongside the schema-defined props.Note: Displaying nearest neighbors leads to
nadditional searches, wherenis the number of search results. Use carefully in high-load situations or scale up Weaviate accordingly.
Fixes
- Missing classification distances in meta/_classification responses (#1176)
Release0.22.8introduced an issue where the kNN-classification distances were sometimes not shown when the?meta=true(deprecated) or the?include=_classificationflags were set. This release fixes this issue.