mongo shell list collections linux 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()
db.getCollectionNames()
JavaScript (shell):
db.getCollectionNames()
Node.js:
db.listCollections()