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
_nearestNeighbors
underscore 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=_nearestNeighbors
property. 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
n
additional searches, wheren
is 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.8
introduced an issue where the kNN-classification distances were sometimes not shown when the?meta=true
(deprecated) or the?include=_classification
flags were set. This release fixes this issue.