The documentation for mongoexport has this scary warning,
Avoid using mongoimport and mongoexport for full instance production backups. They do not re
Turns out that the warning against mongoimport/export is obsolete. It's still a good idea to use mongodump/restore for speed, but mongoexport preserves type information using the MongoDB Extended JSON format. For example, a Date field is no longer silently converted to text, but instead to:
{ "$date": "<date>" }
where <date>
is the ISO-8601 YYYY-MM-DDTHH:mm:ss.mmm<+/-Offset>
representation of the date. Regular expressions are converted to
{ "$regex": "<sRegex>", "$options": "<sOptions>" }
etc. These textual representation of the document fields are parsed by mongoimport, restoring the original types. See BSON Data Types and Associated Representations for more information.
The warning will hopefully be removed soon.