I am using Pymongo to retrieve a collection and I need to exclude documents. According the Mongo collection exclusion parameters, I used $ne in my query and I also excluded fields in my projection.
It seems not to work. I getting the documents with myVar set to true.
cursor = collection.find(
{ 'myVar' : { '$ne': 'true' }},
{
'secret': 0,
'Policies': 0
}
)
Notice my value is a boolean but if I do as written below I get an error :
{ '$ne': true }
Please help me experts ! :)
Python uses True/False for boolean operators, so you should use:
The query seems fine, but you may also use the alternative approach as well: