mongoose-paginate-v2
mongoose-paginate-v2 copied to clipboard
Filter with not equal operator
Hi, I want to filter documents not equal to the role "admin" : So I wrote this line : filter = {role: "$ne: 'admin'"}; but no documents are returned?
I think you are missing some syntax. Try:
filter = {role: { "$ne": 'admin' } };
Please reopen if the issue exists.