How about something like this:
db.stackoverflow.find({
$or: [
{ howmuch: { $exists:false } },
{ howmuch:5 }
]})
In the stackoverflow collection, this will find all documents that do not have the howmuch
field plus all documents that do have howmuch
set to 5.