Reputation: 201
In Aggregation Framework Examples,there is a first & last example:
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" } } }
Can I get the full zipcodes document with $first
?
Edited:
To clarify,I use coffeescript in my express app do the following thing,seems stupid:
@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}}
The fields (id,name,... tags) are all the document schema's field.
I just want to know,is there any way to do this in single $first
.
Upvotes: 14
Views: 13581
Reputation: 486
This is now possible in 2.6, because you can access the document being processed with $$ROOT. Something like this should work:
@aggregate([
{
$group: {
_id: "$category" ,
cnt: { $sum : 1 },
first: { $first : "$$ROOT" }
}
},{
$sort :{ "createdAt" : -1 }
}
])
Upvotes: 30