sql >> Databasteknik >  >> NoSQL >> MongoDB

returdokument med senaste underdokument endast i mongodb-aggregat

Du kan använda $unwind , $sort och $group för att göra detta med något som:

Thread.aggregate([
    // Duplicate the docs, one per messages element.
    {$unwind: '$messages'}, 
    // Sort the pipeline to bring the most recent message to the front
    {$sort: {'messages.date_added': -1}}, 
    // Group by _id+title, taking the first (most recent) message per group
    {$group: {
        _id: { _id: '$_id', title: '$title' }, 
        message: {$first: '$messages'}
    }},
    // Reshape the document back into the original style
    {$project: {_id: '$_id._id', title: '$_id.title', message: 1}}
]);



  1. MongoDB $max

  2. HBase exempeltabell

  3. MongoDB sortering

  4. Förebyggande säkerhet med revisionsloggning för MongoDB