mongodb how to find by id code example
Example 1: mongo console find by id
db.collection.find({_id:ObjectId('5e208c18d598b806c869ca37')}).pretty()
Example 2: mongo find documents that have a certain key
db.coll.find({"mykey":{'$exists': 1}})
db.collection.find({_id:ObjectId('5e208c18d598b806c869ca37')}).pretty()
db.coll.find({"mykey":{'$exists': 1}})