Reputation: 53
It is possible to export a mongodb database to json on windows? I've already searched and the only thing that I find is to export collections. Is that the only way?
Upvotes: 1
Views: 2634
Reputation: 868
Here's an example for a collection
mongoexport --collection=mycollection --db=mydb --out=myoutput.json
Use mongodump
for the whole database
mongodump -d mydb -o output.json
Upvotes: 1