Interface that defines a filter for querying data from Weaviate. It includes a distance and a WhereFilter.

interface WeaviateFilter {
    where: {};
    distance?: number;
}

Properties

Properties

where: {}
distance?: number