Mongo shell does not show collections (command show collections) when insert through Node JS Mongo shell does not show collections (command show collections) when insert through Node JS shell shell

Mongo shell does not show collections (command show collections) when insert through Node JS


Maybe you should first pick a db

> show dbsdb1db2

Then after using a datbase

>use db1

You will see its collections:

>show collectionscollection1collection2

Finally use it:

> db.collection1.find()