I\'ve got a schema that looks a bit like:
var conversationSchema = new Schema({ created: { type: Date, default: Date.now }, updated: { type: Date, de
Use the name of the schema path instead of the collection name:
Conversation.findOne({ _id: myConversationId}) .populate('recipients') // <== .exec(function(err, conversation){ //do stuff });