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
か?
編集:
明確にするために、エクスプレスアプリで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
。