Skip to content
Advertisement

How to exclude an array of objects from mongoose find?

Lets pretend my collection holds following elements:

JavaScript

Now I want to execute a find operation but want to exclude following items:

JavaScript

How does the query have to look to get the following response?

JavaScript

Advertisement

Answer

Try $nor operator, performs a logical NOR operation on an array of one or more query expression and selects the documents that fail all the query expressions in the array.

JavaScript

Playground

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement