what does mongo db return if element is not found in find function code example
Example: mongodb find all that dont have property
db.things.find( { a : { $exists : false } } ); // return if a is missing
db.things.find( { a : { $exists : false } } ); // return if a is missing