I am trying to find all documents that have this field, it doesn\'t matter what exact value it contains; I am only interested in the existence of it.
Here is an exam
There's a $exists operator for that:
db.collectionName.find({"payload.discount": {$exists: true}})