MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

È possibile che il progetto $ di mongodb restituisca un array?

Potresti provare con l'operatore $ push.

Ad esempio, se avevi documenti come:

{ _id: <something>, y: 5 } 

Nella shell mongo, se digiti

db.model.aggregate( [ { $group: { _id: null, newArrayField: { $push: {  x: "$_id", y: "$y"  } } } } ] )

Avresti:

{
    "result" : [
        {
            "_id" : null,
            "newArrayField" : [
                {
                    "x" : ObjectId("5265dd479eb4b1d4289cf222"),
                    "y" : 5
                }
            ]
        }
    ],
    "ok" : 1
}

Per ulteriori informazioni sull'operatore $push, vedere http://docs.mongodb .org/manual/reference/operator/aggregation/push/