node-mongo-querystring
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...
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...
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...
URL param: ``` ?intersects=lon,lat ``` Should give this query: ``` js geojson: { $geoIntersects: { $geometry: { type: "Point" , coordinates: [ lat, lon ] } } } ```