MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Consulta aninhada do Mongoose no modelo por campo de seu modelo referenciado


Você não pode fazer isso em uma única consulta porque o MongoDB não suporta junções. Em vez disso, você deve dividi-lo em algumas etapas:
// 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
    });
});