MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Agrégation MongoDB sur Loopback

Enfin réussi à le faire fonctionner. La plupart des exemples ont omis le connect() partie.

Mon code de travail :

Book.getDataSource().connector.connect(function(err, db) {
  var collection = db.collection('Book');
  var author = Book.getDataSource().ObjectID(authorId);
  collection.aggregate([
    { $match: { authorId: author } },
    { $group: {
      _id: authorId,
     total: { $sum: "$price" }
    }}
  ], function(err, data) {
    if (err) return callback(err);
    return callback(null, data);
  });
});