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 076236e commit 57d1bf9Copy full SHA for 57d1bf9
packages/firestore/src/lite-api/pipeline.ts
@@ -316,7 +316,8 @@ export class Pipeline<AppModelType = DocumentData> {
316
*/
317
where(condition: FilterCondition & Expr): Pipeline<AppModelType> {
318
const copy = this.stages.map(s => s);
319
- copy.push(new Where(this.readUserData('where', condition)));
+ this.readUserData('where', condition);
320
+ copy.push(new Where(condition));
321
return new Pipeline(
322
this.liteDb,
323
this.userDataReader,
0 commit comments