MongoDB Import and Export Commands
mongoexport --db bookstore --collection books --out lala.json
mongoimport -d bookstore -c books lala.json
Create a Database and Collection
"title": "Ethical H & VAPT",
"author": "Lalatendu",
"pages": 500,
"generes": ["fantasy","magical"],
"rating": 9
More
For Export
mongodump --host localhost --port 27017 --db DB_Name --out "C:\Users\Administrator\Desktop\000\DBEXPORT"
For Restore
mongorestore --host localhost --port 27017 --db New_DB_Name "C:\Users\Administrator\Desktop\000\DBEXPORT\DB_Name"