Started migrating to my own mongo db after announcement of parse going away next year.
I have done the migrate operation and data seems to be present however any underscore tables don't work with Mongo shell. I'm not particularly mongo proficient however here's what I'm seeing:
> show databases
local 0.078GB
test 0.203GB
> use test
switched to db test
> show collections
Chat
ChatStatus
Message
Session
SessionBooking
TrainerProfile
UserFavorite
_Cardinality
_Index
_Installation
_JobSchedule
_JobStatus
_PushStatus
_SCHEMA
_User
system.indexes
> users = db._User.find()
2016-02-09T01:07:31.394+0000 E QUERY TypeError: Cannot call method 'find' of undefined
at (shell):1:18
I'm not sure why it's presenting as undefined. Help much appreciated.