MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Holen Sie sich nur das letzte Element des Arrays Mongoose

Möglicherweise möchten Sie die Mongodb-Aggregation (Version 3.2) $slice so:

Post.aggregate([
  { 
    $match: { 
      '_id.$oid': postId 
    }
  },
  { 
    $project: {
      comments: {
        $slice: [ "$comments", -1 ] 
      }
    }
  }
]);

In früheren Versionen von mongodb:

Post.aggregate([
  { 
    $match: { 
      '_id.$oid': postId 
    }
  },
  { 
    $unwind: "$comments"
  },
  {
    $group : {
      _id: "$_id.$oid",
      comment: { $last: "$comments" }
    }
  }
]);