Lets pretend my collection holds following elements:
JavaScript
x
14
14
1
const Item = mongoose.Schema({
2
type: { type: String },
3
group: { type: Number }
4
});
5
6
[
7
{ type: "A", group: 1 },
8
{ type: "B", group: 1 },
9
{ type: "C", group: 1 },
10
{ type: "A", group: 2 },
11
{ type: "B", group: 2 },
12
{ type: "C", group: 2 },
13
]
14
Now I want to execute a find
operation but want to exclude following items:
JavaScript
1
7
1
const items = [
2
{ type: "A", group: 1 },
3
{ type: "B", group: 1 },
4
];
5
6
const result = await Model.find({ /* ??? */ });
7
How does the query have to look to get the following response?
JavaScript
1
7
1
const result = [
2
{ type: "C", group: 1 },
3
{ type: "A", group: 2 },
4
{ type: "B", group: 2 },
5
{ type: "C", group: 2 },
6
];
7
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
1
6
1
const items = [
2
{ type: "A", group: 1 },
3
{ type: "B", group: 1 },
4
];
5
const result = await Model.find({ $nor: items });
6