mongoose-paginate-v2 icon indicating copy to clipboard operation
mongoose-paginate-v2 copied to clipboard

Filter with not equal operator

Open kaboume opened this issue 2 years ago • 1 comments

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?

kaboume avatar Aug 31 '22 17:08 kaboume

I think you are missing some syntax. Try:

filter = {role: { "$ne": 'admin' } };

Gabrirf avatar Sep 16 '22 13:09 Gabrirf

Please reopen if the issue exists.

aravindnc avatar May 29 '24 03:05 aravindnc