Re: [IndexedDB] Introduce a more general query mechanism beyond keys/ranges (#45)

One hand-wavy approach would be to add boolean/set operations as query types, e.g.:

`store.get(IDBQuery.and(IDBQuery.is("name", "alice"), IDBQuery.is("salary", IDBKeyRange.bounds(1e5,2e5))))`

... with ways of referencing indexes, etc. This could be the target of an ES6 "tagged template string" microsyntax compiler, or we could introduce a blessed query syntax.

---
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/45#issuecomment-146289063

Received on Wednesday, 7 October 2015 18:41:15 UTC