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

Raggruppamento nidificato con MongoDB

Qualcosa del genere dovrebbe farlo;

db.example.aggregate( 
  { 
    $group: { 
      _id:   { age: "$age", gender: "$gender" }, 
      names: { $addToSet: "$name" } 
    } 
  }, 
  { 
    $group: {
      _id: { age: "$_id.age" }, 
      children: { $addToSet: { gender: "$_id.gender", names:"$names" } } 
    } 
  } 
)

...che dà il risultato;

{
  "_id" : {
    "age" : 1
  },
  "children" : [
    { "gender" : "m", "names" : [ "G", "A" ] },
    { "gender" : "f", "names" : [ "J", "D" ] }
  ]
}, 
...

Se vuoi l'età come _id come nel tuo esempio, sostituisci semplicemente _id del secondo gruppo di;

_id: "$_id.age",