Moogoose self reference not populate

1.5k Views Asked by At

I have a self reference in mongoose like this :

var wordSchema = new mongoose.Schema({
        content : String,
        country: [{type: mongoose.Schema.Types.ObjectId, ref: 'Country'}],
        trad: {
            words: [{
                _id: { type: mongoose.Schema.Types.ObjectId, ref: 'Word' }

            }]
        }

    });

I want to get back the attribute content of my model with a find :

 Word.find({ content:regex, country:'5464dcee1874048e2c623389' }).populate('trad.words').exec(function (err, words) {
        if (!err) {
            res.json(words);
        } else {
            console.log(err);
        }
    });

Here is the results I get :

_id: "5468d91c6481cd063033a4d0"
content: "content"
country: [5464ddd226e63fad2c5aa053]
trad: {words:[{_id:5468d91c6481cd063033a4cf}]}
words: [{_id:5468d91c6481cd063033a4cf}]
0: {_id:5468d91c6481cd063033a4cf}
_id: "5468d91c6481cd063033a4cf"

I don't understand why it's not return me others attribute in the subDocument word.. Can you help me understand what I am doing wrong?

Thanks,

Maxime

1

There are 1 best solutions below

2
On BEST ANSWER

There are more than one trad? So, set the path populate('countries trad.words') as below:

var wordSchema = new mongoose.Schema({
        content : String,
        countries: [{type: mongoose.Schema.Types.ObjectId, ref: 'Country'}],
        trad: [{
            _id: mongoose.Schema.Types.ObjectId,
            words: [{ type: mongoose.Schema.Types.ObjectId, ref: 'Word' }]
        }]
    });

Otherwise, you not need of trad field. So, set the path populate('countries trad_words') as below:

var wordSchema = new mongoose.Schema({
        content : String,
        countries: [{type: mongoose.Schema.Types.ObjectId, ref: 'Country'}],
        trad_words: [{type: mongoose.Schema.Types.ObjectId, ref: 'Word'}]
    });