find all elements in mongo collection code example
Example 1: show collection data in mongodb
db.collectionName.find()
Example 2: operator to return specific data of a mongodb query
db.inventory.find( { status: "A" }, { item: 1, status: 1 } )
db.collectionName.find()
db.inventory.find( { status: "A" }, { item: 1, status: 1 } )