We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b99031 commit 31708f7Copy full SHA for 31708f7
src/db/db.ts
@@ -728,6 +728,8 @@ export class Db extends HierarchicalLogger<CommandEventMap> {
728
defaultId: options?.defaultId,
729
indexing: options?.indexing as any,
730
vector: options?.vector,
731
+ lexical: options?.lexical,
732
+ rerank: options?.rerank,
733
},
734
735
};
src/documents/collections/types/filter.ts
@@ -68,6 +68,7 @@ export type CollectionFilterOps<Elem> = {
68
$lte?: Elem,
69
$gt?: Elem,
70
$gte?: Elem,
71
+ $match?: string,
72
} & (
73
any[] extends Elem ? CollectionArrayFilterOps<Elem> : EmptyObj
74
)
0 commit comments