Hey Michael,
If I want all of the documents with a timestamp newer than June 1st, the following works for me when I substitute in my db collection and timestamp field names
mongoexport -db yourdb -c yourcollection -q '{ yourTimestampField: { $gt: new Date(1401602400000) }}'
I'm not sure how you are using the guid, but I hope the above is helpful
-Joe