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

Yes, this seems to have a lot of overlap with #40. The example in that case could be solved Mango-style with:

```js
{
  x: { $gt: 10 },
  y: { $gt: 20 }
}
```

(Assuming the index is on an array of `[x, y]`.)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/45#issuecomment-248951949

Received on Thursday, 22 September 2016 16:17:23 UTC