I am new to working with Mongo. I recently taken over our LearningLocker database from a previous employee. I can see using show dbs, the database has 4.188GB. But even using a simple db.learninglocker.find() is not returning anything. Any suggestions on how to review the data?
Asked
Active
Viewed 92 times
-1
-
Add exact steps you've followed and the results of each step to the question. – D. SM Feb 01 '21 at 05:02
1 Answers
0
You should pass down an object as argument to the find function:
db.learninglocker.find({})

E. Mancebo
- 629
- 3
- 10