mirror of
https://github.com/vale981/grapher
synced 2025-03-05 17:41:41 -05:00
5 lines
184 B
JavaScript
5 lines
184 B
JavaScript
Mongo.Collection.prototype.aggregate = function(pipelines, options) {
|
|
const coll = this.rawCollection();
|
|
|
|
return Meteor.wrapAsync(coll.aggregate, coll)(pipelines, options);
|
|
};
|