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

Come usare Aggregate nella mangusta

Prova questo

Contacts.aggregate({$group: { "_id": { code: "$Code", name: "$Name" } } }, function(err, contacts) {
   ...
});

Oppure, con $match se hai bisogno di questo AgencyTranslation: /^BROADCASTING/ condizione

Contacts.aggregate([
  { $match : { AgencyTranslation: /^BROADCASTING/ } },
  { $group: { "_id": { code: "$Code", name: "$Name" } } }
], function(err, contacts) {
  // ...
});