Consulta de mangusto se houver campo onde existe arquivado
db.stackoverflow.find({
howmuch: { $exists: true }
})
Thomate
db.stackoverflow.find({
howmuch: { $exists: true }
})
db.stackoverflow.find({
$or: [
{ howmuch: { $exists:false } },
{ howmuch:5 }
]})