import json to mongodb example
Example 1: how to import a file from ones directory into mongodb
mongoimport --db test --collection inventory ^
--authenticationDatabase admin --username --password ^
--drop --file ~\downloads\inventory.crud.json
Example 2: how to export mongodb database to json
sudo mongoexport --db newdb -c restaurants --out newdbexport.json