Skip to content

Commit 01e9f58

Browse files
Add not-in and != to newest copy of WhereFilterOp (#3793)
1 parent 07cbd42 commit 01e9f58

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/firestore/lite/src/api/reference.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,13 @@ export type WhereFilterOp =
227227
| '<'
228228
| '<='
229229
| '=='
230+
| '!='
230231
| '>='
231232
| '>'
232233
| 'array-contains'
233234
| 'in'
234-
| 'array-contains-any';
235+
| 'array-contains-any'
236+
| 'not-in';
235237

236238
export function where(
237239
fieldPath: string | FieldPath,

0 commit comments

Comments
 (0)