how to see mongodb collection data 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()
db.collectionName.find()
db.collection_name.find().pretty()