我可以在MongoDB聚合查询中获得第一个文档(不是字段)吗?

时间:2013-05-07 01:15:40

标签: mongodb aggregation-framework

Aggregation Framework Examples中,有第一个&最后一个例子:

db.zipcodes.aggregate( { $group:
                         { _id: { state: "$state", city: "$city" },
                           pop: { $sum: "$pop" } } },
                       { $sort: { pop: 1 } },
                       { $group:
                         { _id : "$_id.state",
                           biggestCity:  { $last: "$_id.city" },
                           biggestPop:   { $last: "$pop" },
                           smallestCity: { $first: "$_id.city" },
                           smallestPop:  { $first: "$pop" } } }

我可以使用$first获取完整的zipcodes文档吗?

编辑:

为了澄清,我在我的快递应用程序中使用coffeescript执行以下操作,看起来很愚蠢:

@aggregate(
  {
    $group :  
      _id : "$category" 
      cnt : { $sum : 1 }
      id: {$first: "$_id"}
      name: {$first: "$name"}
      description: {$first: "$description"}
      region: {$first: "$region"}
      startedAt: {$first: "$startedAt"}
      titleImage: {$first: "$titleImage"}
      tags: {$first: "$tags"}
  },
  {$sort :{"createdAt" : -1}}

字段(id,name,...标签)是文档架构的所有字段。 我只是想知道,有没有办法在单$first中执行此操作。

1 个答案:

答案 0 :(得分:10)

现在可以在2.6中使用,因为您可以使用$$ ROOT访问正在处理的文档。这样的事情应该有效:

@aggregate(
{
    $group :  
        _id : "$category" 
        cnt : { $sum : 1 }
        first: {$first : "$$ROOT"}
{$sort :{"createdAt" : -1}}
)