Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a schemas that looks like:

var LikeSchema = new Schema({
    userid:{ type:Schema.Types.ObjectId, ref:userCollection },
    like:{ type:Number, default:1 },
    date:{ type:Date, default:Date.now}
});
var ProductSchema = new Schema({
    user:{ type:Schema.Types.ObjectId, ref:userCollection },
    title:{  type:String,  trim:true,  required:true  },
    likes:[LikeSchema]
});

I need to get product by id and populate liked users, so i'm trying this:

Products.findById(productId, 'title likes')
        .populate('likes.$userid', 'username')
        .exec(function (err, doc) {
});

The above code is works but not populate users, so i'm trying this:

Products.findById(productId, 'title likes')
        .populate('likes.userid', 'username')
        .exec(function (err, doc) {
});

This code thorw the following exception:

MissingSchemaError: Schema hasn't been registered for model "undefined".
Use mongoose.model(name, schema)

Is there a way I can do this with such schema?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.