blinkdb-js / blinkdb

🗃️ An in-memory JS database optimized for large scale storage on the frontend.
https://blinkdb.io
MIT License
119 stars 10 forks source link

Is there a way to filter for not-equal? #27

Open retorquere opened 1 year ago

maradotwebp commented 1 year ago

Not currently, no. An implemention of "not equal" would not be faster than retrieving all items and filtering for not equal. We could however implement it for convenience's sake.

retorquere commented 1 year ago

I take it then there is also not a way to query for "not in", just "in"?

maradotwebp commented 1 year ago

Yep. TBD.