ac88
ac88

Reputation: 53

How to export a MongoDB database to JSON?

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

Answers (1)

Stephen Taylor
Stephen Taylor

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

Related Questions