sql >> Database >  >> NoSQL >> MongoDB

Mongoose geneste query op Model op veld van het model waarnaar wordt verwezen

U kunt dit niet in een enkele query doen, omdat MongoDB geen joins ondersteunt. In plaats daarvan moet je het in een paar stappen verdelen:

// Get the _ids of people with the last name of Robertson.
Person.find({lastname: 'Robertson'}, {_id: 1}, function(err, docs) {

    // Map the docs into an array of just the _ids
    var ids = docs.map(function(doc) { return doc._id; });

    // Get the companies whose founders are in that set.
    Company.find({founder: {$in: ids}}, function(err, docs) {
        // docs contains your answer
    });
});


  1. Oproepfunctie binnen mongodb's aggregaat?

  2. MongoDB $indexOfBytes

  3. Implementatie en onderhoud van MongoDB met behulp van Ansible

  4. Python en MongoDB:verbinding maken met NoSQL-databases