Możesz spróbować z operatorem $push.
Na przykład, jeśli masz dokumenty takie jak:
{ _id: <something>, y: 5 }
W powłoce mongo, jeśli wpiszesz
db.model.aggregate( [ { $group: { _id: null, newArrayField: { $push: { x: "$_id", y: "$y" } } } } ] )
Otrzymasz:
{
"result" : [
{
"_id" : null,
"newArrayField" : [
{
"x" : ObjectId("5265dd479eb4b1d4289cf222"),
"y" : 5
}
]
}
],
"ok" : 1
}
Aby uzyskać więcej informacji na temat operatora $push, zobacz http://docs.mongodb .org/manual/reference/operator/aggregation/push/