get all documents in collection mongodb collection code example
Example 1: see number of documents in mongodb collection
db.collection.count()
Example 2: get all data in collection mongodb
db.collection_name.find().pretty()
db.collection.count()
db.collection_name.find().pretty()