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

Raggruppa i documenti Mongo per ID e ottieni l'ultimo documento per timestamp

Se stai facendo un'aggregazione, devi fare in modo simile a SQL , il che significa specificare l'operazione di aggregazione per colonna, l'unica opzione che hai è usare $$ROOT operatore

db.test.aggregate(
   [
    { $sort: { timestamp: 1 } },
     {
       $group:
         {
           _id: "$fooId",
           timestamp: { $last: "$$ROOT" }
         }
     }
   ]
);

Ma questo cambierà un po' l'output

{ "_id" : "1", "timestamp" : { "_id" : ObjectId("570e6be3e81c8b195818e7fa"), 
  "fooId" : "1", "status" : "A", "timestamp" :ISODate("2016-01-01T00:00:00Z"), 
  "otherInfo" : "BAR" } }

Se vuoi restituire il formato del documento originale, probabilmente avrai bisogno di una fase $project dopo quella