Hello!
I know that to query 2 array fields it’s just using $all.
But what about NOT them? I tried something like this
[{
“genres”: {$ne: [“Horror”, “Crime”]},
}]
and that
[{
"genres": {$ne: {$all: ["Horror", "Crime"] } },
}]
but i still get a “crime” inside the array of one document!