Hi I have accidently update some of the records in mongodb with a value of undefined by writing some vanila javascript inside NoSQLBooster IDE. Problem is that records exist but when I ran $exists to true, it shows the records in Robo3T but not in NoSQLBooster. How ever when I ran email is equal to undefined it doesn't return any records however records exist. Here is the sample query and screenshot of result
db.customer.find({source:'some value',"email":{$exists: true}})
.projection({})
.sort({_id:-1})
How do I query and correct those records. Thanks
