kossnocorp / typesaurus

🦕 Type-safe TypeScript-first ODM for Firestore
https://typesaurus.com
412 stars 34 forks source link

Fix where() 'not in' filter #104

Open SrBrahma opened 2 years ago

SrBrahma commented 2 years ago

Currently, this works:

image

but that doesn't:

image

Looks like that you haven't properly added 'not-in' to the where types, only 'in'.

'not-in' reference https://firebase.google.com/docs/firestore/query-data/queries#not-in, works in the same syntax way as 'in'