mongodb get all collections code example
Example 1: show collections in mongodb
db.getCollectionNames()
Example 2: list all collections in the MongoDB shell
JavaScript (shell):
db.getCollectionNames()
Node.js:
db.listCollections()
Example 3: get all data in collection mongodb
db.collection_name.find().pretty()