When I go into "meteor mongo" OR "mongo localhost:3001", a shell opens up. If I 'show dbs', it displays:
customers 0.000GB
local 0.008GB
meteor 0.002GB
I created a collection during tinkering from within the shell and that currently is visible. What isn't visible, however, are the several collections that exist in my app! For example, in my meteor app, from localhost, I get a return of documents when I type 'Jobs.find().fetch()' and 'Tasks.find().fetch()'. If I update these documents, it persists after the app has been restarted.
These collections DO exist, but I don't know how to access them via shell.
RoboMongo
– Mostafiz Rahmanmeteor
db. – Styx