Operátor $not neinvertuje komplexní výraz. Pro složité výrazy musíte použít $and nebo $or.
Pomocí logických pravidel víme, že následující jsou identická:
not ( A and B ) = not A or not B
Pomocí dotazovacího jazyka MongoDB byste měli:
db.collection.find({$or:[{"a":{"$ne":false}},{"b":{"$ne":"condition"}}]})
OR simplifying the double boolean:
db.collection.find({$or:[{"a":true},{"b":{"$ne":"condition"}}]})
Pomocí agregačního rámce MongoDB byste měli:
db.collection.aggregate([{"$match":{$or:[{"a":{"$ne":false}},{"b":{"$ne":"condition"}}]}}])
OR again, simplified to:
db.collection.aggregate([{"$match":{$or:[{"a":true},{"b":{"$ne":"condition"}}]}}])