show all documents in collection 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: mongodb get all rows
db.collectionName.find()