MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

new Date() nell'aggregato $progetto

per poter aggiungere un campo timestamp dal documento, puoi farlo, dato:

{"ts": 1400512120100}

aggregare come data:

db.foo.aggregate({
   $project: {
       date: { $add: [new Date(0), "$ts"] }
   }
})