Mongoose -Abfrage, wenn ein Feld vorhanden ist, wo eingereicht wird
db.stackoverflow.find({
howmuch: { $exists: true }
})
Thomate
db.stackoverflow.find({
howmuch: { $exists: true }
})
db.stackoverflow.find({
$or: [
{ howmuch: { $exists:false } },
{ howmuch:5 }
]})