mongodb find all that dont have property

JavaScript
db.things.find( { a : { $exists : false } } ); // return if a is missing
Source

Also in JavaScript: