mongobd check if field exists and not null code example
Example: mongodb exists and not null
db.collection1.find({ 'fieldname1' : { $exists: true, $ne: null } });
db.collection1.find({ 'fieldname1' : { $exists: true, $ne: null } });