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