MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

MongoDB:Wie löst man DBRef auf Client-Seite auf?

Sie können dies mit $lookup Operator. Betrachten Sie die folgende Aggregationspipeline:

// Execute aggregate, notice the pipeline is expressed as an Array
collection.aggregate([
    {
        "$lookup": {
            "from": "product",
            "localField": "content.product.$id",
            "foreignField": "_id",
            "as": "products"
        }
    },
    {
        "$lookup": {
            "from": "clients",
            "localField": "content.client.$id",
            "foreignField": "_id",
            "as": "clients"
        }
    },
  ], function(err, result) {
    console.log(result);
});