对集合执行聚合查询。
字段名 | 类型 | 必选 | 默认值 | 说明 |
pipeline | object[] | 是 | - | 聚合查询pipeline |
返回一个Promise, resolve结果为数组。
exports.main = async function(context) { const cloud = context.cloud; const result = await cloud.db.collection('users').aggregate([ { $match: {name: 'tom'} } ]); return result; }
(端上调用,缺乏上下文参数,不推荐)