📅  最后修改于: 2022-03-11 15:02:48.982000             🧑  作者: Mango
const result=await Company.aggregate([
{$lookup: {
from: 'persons',
localField: 'founder',
foreignField: '_id',
as: 'founder'}
},
{$unwind: {path: '$founder'}},
{$match: {'founder.lastname': 'Robertson'}}
]);