mquery icon indicating copy to clipboard operation
mquery copied to clipboard

Expressive MongoDB query builder

Results 18 mquery issues
Sort by recently updated
recently updated
newest added

This PR does: - add Github issue template - add Github PR template - add Github actions testing workflow (based on mpath) - remove `.travis.yml` to completely switch to github...

This PR does: - add `yarn.lock` to the `.gitignore` - add the `files` property to `package.json` to not ship files that are not required (see [unpkg](https://unpkg.com/browse/[email protected]/)) - consistenize some jsdoc...

I also added benchmarks: before: ``` node clone clone Binary x 6,092,545 ops/sec ±0.35% (95 runs sampled) clone Buffer x 1,685,261 ops/sec ±0.80% (89 runs sampled) clone Date x 3,855,007...

got surprised that it still runs fine after mostly auto converting it using vscode had to make few minor adjustment, added a proxy to make it still work without using...

This library is great! Is it planned to support typescript ?

I have been using Mongorito for some time now, and I really like it over some of the alternative node.js driver options out there. Mongorito uses mquery underneath the surface,...

It seems like this is indeed the case, unless I'm missing something. https://docs.mongodb.com/manual/reference/method/cursor.hint/#cursor.hint According to mongodb documentation ^ , it is possible to pass a string (index name) to the...

provide way for users to receive/modify conditions (casting for example), options, & fields before executing the query.

enhancement

Using the MongoDB `Long`/`NumberLong` type in queries can cause a few different errors in mquery. For example: ``` mquery(collection).update( {_id: "example"}, {_id: "example", number: mongodb.Long.fromString("12345")}, {upsert: true}, function(err, num) {...