how to find the collections of a database mongodb code example
Example 1: show collection data in mongodb
db.collectionName.find()
Example 2: list all collections in the MongoDB shell
JavaScript (shell):
db.getCollectionNames()
Node.js:
db.listCollections()