标签: mongodb mongoose
如何在lookup-> pipeline-> match中使用db1._id来过滤相等的字段。谢谢。
db1.aggregate([ { '$lookup': { 'from': "db2", 'pipeline': [ { '$match': { 'db2_id': "db1._id" }} ], 'as': 'result' } } ])