Hello,
Finally got it working I think
var pipeline = [{ $match: { "idbm.rating": { $gt: 7 }, "$or": [ {"genres": {$ne: "Horror"}}, {"genres": {$ne: "Crime"}} ], "$or": [{ "rated": "PG" }, { "rated": "G" }], "languages": { $in: ["English", "Japanese"] } } }]
MongoDB Enterprise Cluster0-shard-0:PRIMARY> db.movies.aggregate(pipeline).itcount()
but when I run it, I see that no records are returned.
Anyone who can give me a hint why. As far as I can see I did all the cases right