在数组中的ObjectId上查找

时间:2018-12-05 16:37:08

标签: database mongodb mongodb-query aggregation-framework

我有商店集合和用户集合,其中以字符串形式包含商店ID的列表。

商店文件示例:

    {
            "_id" : ObjectId("5a0c6797fd3eb67969316ce2"),
            "picture" : "http://placehold.it/150x150",
            "name" : "Genmom",
            "email" : "leilaware@genmom.com",
            "city" : "Rabat",
            "location" : {
                    "type" : "Point",
                    "coordinates" : [
                            -6.79387,
                            33.83957
                    ]
            }
    }

用户集合示例:

{
            "_id" : ObjectId("5c04b943ff491824b806686a"),
            "email" : "ayoub.khial@gmail.com",
            "password" : "$2a$10$4Wt5Rn6udxREdXCIt3hGb.sKhKUKOlyiYKmLTjYG3SqEPKFSw9phq",
            "likedShops" : [
                    "5a0c6797fd3eb67969316ce2",
                    "5c07ada8ff49183284e509d1",
                    "5c07acc1ff49183284e509d0"
            ],
            "dislikedShops" : [ ]
}

我想返回喜欢的商店的详细信息。

1 个答案:

答案 0 :(得分:2)

您可以使用以下$lookup聚合

db.users.aggregate([
  { "$lookup": {
    "from": "shops",
    "let": { "likedShops": "$likedShops" },
    "pipeline": [
      { "$match": { "$expr": { "$in": ["$_id", "$$likedShops"] }}}
    ],
    "as": "likedShops"
  }}
])

或者,如果您的ID是字符串,则将$toStringObjectIds一起使用

db.users.aggregate([
  { "$lookup": {
    "from": "shops",
    "let": { "likedShops": "$likedShops" },
    "pipeline": [
      { "$match": { "$expr": { "$in": [{ "$toString": "$_id" }, "$$likedShops"] }}}
    ],
    "as": "likedShops"
  }}
])