node-mongo-querystring icon indicating copy to clipboard operation
node-mongo-querystring copied to clipboard

Query builder for accepting URL query parameters into your MongoDB queries. Safe and feature rich. Supports most of MongoDB's query operators such as $eq, $gt, $lt, $ne, $in, $nin, $exists, $regex, ge...

Results 16 node-mongo-querystring issues
Sort by recently updated
recently updated
newest added

Hello - great project. My requirements are slightly different to the default behaviour of node-mongo-querystring. Given a URL like /?mongoquery=name=simon^location=London&page=2&rows=10 I would like to access my Mongo database query just...

In the mongodb shell I get no results if I try to pass a query such as the following: `{ endret: { $gte: "2014-01-01T00:00:00.000Z" } }`. However, this does work...

I'm having a problem with the custom near query again, using v4.4.1 If I specify a name for the query like so: ``` javascript custom: { … near: 'loc' }...

Hey, Any thoughts on how to implement a custom page/limit filter? Near as I can tell this itsn't handled in a normal query which gets built, but are additional operators...

enhancement
help wanted

We're using TypeScript with our NodeJS server, so it would be great if there were some type definitions to go with this library (which works great!). So far we're just...

enhancement

URL param: ``` ?intersects=lon,lat ``` Should give this query: ``` js ​geojson: { $geoIntersects: { $geometry: { type: "Point" , coordinates: [ lat, lon ] } } } ```

enhancement