如何使用collection1 _id汇总查找管道匹配项

时间:2019-05-30 06:49:12

标签: mongodb mongoose

如何在lookup-> pipeline-> match中使用db1._id来过滤相等的字段。谢谢。

db1.aggregate([
{
  '$lookup': {
    'from': "db2",
    'pipeline': [
      { '$match': {
        'db2_id': "db1._id"
      }}
    ],
    'as': 'result'
  }
}
])

0 个答案:

没有答案