dexie-mongoify icon indicating copy to clipboard operation
dexie-mongoify copied to clipboard

Dexie.js plugin with MongoDB-like API

Results 14 dexie-mongoify issues
Sort by recently updated
recently updated
newest added

I was just trying to familiarize myself with the codebase to work on the fulltext search item, but after doing a fresh clone of `master` and doing `npm run test`,...

Hi All, Thanks for this great library! I was talking with the folks at textile.io, who are building [js-threaddb](https://github.com/textileio/js-threaddb). It is a local-first database which will sync to the distributed...

By using the `db` parameter passed in by Dexie when constructing a new instance, every time a new instance is created, the `collection` method works only on the latest DB....

Does it support $regex operator? I want to query to see if a string field contains certain substring.

Since the $in operator works with arrays and strings it makes sense to add this ability to the $all operator as well.

What about complex queries with nested $and/$or? products.find({"$and":[{"$or":[{"pgr_id":{"$eq":6}},{"pgr_id":{"$eq":10}}]},{"name":{"$eq":"test"}}]}) with this kind of query i get the error Uncaught TypeError: Cannot read property '0' of undefined. Is this not supported or...

I am trying to add an object to an existing array which in inside a nested object. The structure looks similar to below ``` { Name : 'John', age :...

@YurySolovyov I have found two problems with table.update() which I don't think are new. * Given ```table`.update( { 'panel': panel }, { 'show': show }, { upsert: true } )```...

bug

I've just downloaded the latest dexie.js and the latest dexie-mongoify.min.js and am getting `"TypeError: Cannot read property 'push' of undefined"` It appears as though quite a bit has changed in...