Using $ne operator in MongoDB queries
When querying a collection in MongoDB, equality and inequality queries works in different ways. For example:
db.users.insert({age: 31})
the query
db.users.find({age:31})
outputs
{ "_id" : ObjectId("52e277236c87469f736be017"), "age" : 31 }
But, when we are looking for a register that can have a certain field, the $ne operator will also consider the existence of the field. So, the query
db.users.find({active: {$ne: true}})
outputs
{ "_id" : ObjectId("52e277236c87469f736be017"), "age" : 31 }
which means it will return all registers where the the value of 'active' is not 'true', which is true for the object that only has the field age:31.
Written by José Agripino Duarte
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Mongodb
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#