From d74e188f805b63395892575166e76d0cab04d403 Mon Sep 17 00:00:00 2001 From: Rob Meng Date: Mon, 4 Dec 2023 12:01:16 -0500 Subject: [PATCH] fix: fix passing prefilter flag to remote client (#677) was passing this at the wrong position --- node/src/remote/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/remote/index.ts b/node/src/remote/index.ts index 1130e9ce..c870db7c 100644 --- a/node/src/remote/index.ts +++ b/node/src/remote/index.ts @@ -154,10 +154,10 @@ export class RemoteQuery extends Query { queryVector, (this as any)._limit, (this as any)._nprobes, + (this as any)._prefilter, (this as any)._refineFactor, (this as any)._select, - (this as any)._filter, - (this as any)._prefilter + (this as any)._filter ) return data.toArray().map((entry: Record) => {