I mit tilfælde har jeg haft succes med følgende løsning til at konvertere felt ClockInTime fra ClockTime-samling fra streng til datotype :
db.ClockTime.find().forEach(function(doc) {
doc.ClockInTime=new Date(doc.ClockInTime);
db.ClockTime.save(doc);
})