I am trying to see which users have signed up for my app. I do the following at my terminal
meteor mongo http://www.myapp.com
use myapp_com
show collections
all i get is system.indexes, system.users, and users
When in fact i have more collections than these.
Also when i do db.users.find({})
I don't get any data back, the shell just advances to the next prompt.
What's going on? Is this a permissions thing?