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?