MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Mongodb Join sur le champ _id de String à ObjectId

Vous pouvez utiliser $toObjectId agrégation de mongodb 4.0 qui convertit String id à ObjectId

db.role.aggregate([
  { "$lookup": {
    "from": "user",
    "let": { "userId": "$_id" },
    "pipeline": [
      { "$addFields": { "userId": { "$toObjectId": "$userId" }}},
      { "$match": { "$expr": { "$eq": [ "$userId", "$$userId" ] } } }
    ],
    "as": "output"
  }}
])

Ou vous pouvez utiliser $toString agrégation de mongodb 4.0 qui convertit ObjectId à String

db.role.aggregate([
  { "$addFields": { "userId": { "$toString": "$_id" }}},
  { "$lookup": {
    "from": "user",
    "localField": "userId",
    "foreignField": "userId",
    "as": "output"
  }}
])