mongodb - mongoexport only object value -


i have simple mongodb 1 property saving, email. successful @ exporting collection csv. looks like.

http://imgur.com/gjknqfh

what love able export data in 'email' property. way not have cleanup want use .csv in mailchimp etc...

this mongoexport command

mongoexport -d mydatabase -c emails -o export.csv

am able in mongoexport or need custom view?

thanks

you should mongoexport in following way:

mongoexport -d mydatabase -c emails -f email --csv -o export.csv 

where email name of field want export.

you need give full path while exporting.


Comments