db.foo.find().limit(300)
won't do it... it still prints out 20
db.foo.find().toArray()
db.foo.find().forEach(printjson)
will both print out very expanded view of each document instead of the 1-line version for find():
won't do it... it still prints out 20
will both print out very expanded view of each document instead of the 1-line version for |
||||
|
|
|
You can use |
|||||
|
|
from the shell if you want to show all results you could do db.collection.find().toArray() to get all results without it |
|||
|
|
|
Could always do:
To get that compact view. Also, I find it very useful to limit the fields returned by the find so:
which would return only the _id and name field from foo. |
||||
|
|