-
I am on mongoose `5.12.7` and see a deprecation warning:
> DeprecationWarning: collection.count is deprecated, and will be removed in a future version. Use Collection.countDocuments or Collection.est…
-
not sure why this package doesn't have a populate option like mongoose-paginate-v2. can I populate without using $lookup ?
-
Hi!
Am I right that this is not working with mongoose-paginate because it only patches query exec?
Mongoose paginate:
https://github.com/edwardhotchkiss/mongoose-paginate
-
Hello,
How to use collation http://mongoosejs.com/docs/api.html#query_Query-collation in mongoose-paginate?
Eg:
.collation({locale: "vi", strength: 1 })?
-
Hey Guys,
I used to use the `{ limit: Infinity, offset: 0 }` feature to get all the items while using mongoose paginate module as pagination parameters.
After updating the version of my mongoose…
-
Hey!
I'm actually facing an issue using `class-transformer` using NestJS. I try to exclude some properties for my response, but getting following error:
```
TypeError: obj.toObject is not a fun…
necm1 updated
2 months ago
-
**Current Behaviour**
The following fields parameter in my Mongoose query is not recognised by paginate function since the query simply returns the entire result including "bids.bid", which I am ex…
-
- work around for now is to downgrade mongoose version to 6.6.2
- I tried to install latest bson package (5.0.1) as a peer dependency, but this does not fix the problem
## Reproduce Bug
In order …
-
Having all the latest versions `yarn add mongoose mongoose-paginate-v2 @types/mongoose-paginate-v2` it makes a lot of errors:
`node_modules/mongoose/index.d.ts:1:1 - error TS6200: Definitions of th…
MickL updated
3 years ago
-
I'm sending a query with postman to an apollo server to get a list of users.
This is my options object:
```
const options = {
page: parseInt(page),
limit: 15,
…