machea dos colecciones mondodb

PHOTO EMBED

Thu Aug 31 2023 02:05:11 GMT+0000 (Coordinated Universal Time)

Saved by @rickysanta #javascript #mongodb

db.cities.aggregate([
  { "$project": { "id_city": { "$toString": "$_id" } } }, //combiente a string los ObjectIds
  { "$lookup": {
    "localField": "id_city",
    "from": "itineraries",
    "foreignField": "cityID",
 as: "matching_docs"
    }
  },
  {
    $match: {
      matching_docs: { $ne: [] } // Filtrar documentos que tienen coincidencias
    }
  }
])
content_copyCOPY