sql >> Database >  >> NoSQL >> MongoDB

$lookup geneste array in mongodb

Als je mongodb-versie 3.6 hebt dan kun je proberen met geneste $lookup aggregatie...

db.collection.aggregate([
  { "$lookup": {
    "from": Albums.collection.name,
    "let": { "albums": "$albums" },
    "pipeline": [
       { "$match": { "$expr": { "$in": [ "$_id", "$$albums" ] } } },
       { "$lookup": {
         "from": Songs.collection.name,
         "let": { "songs": "$songs" },
         "pipeline": [
           { "$match": { "$expr": { "$in": [ "$_id", "$$songs" ] } } }
         ],
         "as": "songs"
       }}
     ],
     "as": "albums"
  }}
 ])

En voor een langdradige uitleg kun je door $lookup meerdere niveaus gaan zonder $onthaasten?

Of als je een mongodb-versie hebt ouder dan 3.6

db.collection.aggregate([
  { "$lookup": {
    "from": Albums.collection.name,
    "localField": "albums",
    "foreignField": "_id",
    "as": "albums"
  }},
  { "$unwind": "$albums" },
  { "$lookup": {
    "from": Songs.collection.name,
    "localField": "albums.songs",
    "foreignField": "_id",
    "as": "albums.songs",
  }},
  { "$group": {
    "_id": "$_id",
    "name": { "$first": "$name" },
    "started_in": { "$first": "$started_in" },
    "active": { "$first": "$active" },
    "country": { "$first": "$country" },
    "albums": {
      "$push": {
        "_id": "$albums._id",
        "title": "$albums.title",
        "released": "$albums.released",
        "type": "$albums.type",
        "songs": "$albums.songs"
      }
    }
  }}
])



  1. Query op arraytype - MongoDB

  2. Mongo PHP-extensie inschakelen in Microsoft Azure-websites

  3. Mongoose:findOneAndUpdate werkt een bestaand veld niet bij

  4. Probleem bij het deserialiseren van redis-cache naar objecten in Spring-boot