mongoose.Types.ObjectId
ObjectId
है कंस्ट्रक्टर फ़ंक्शन, जिसे आप स्कीमा परिभाषाओं में उपयोग करना चाहते हैं वह है mongoose.Schema.Types.ObjectId
(या mongoose.Schema.ObjectId
)।
तो deviceSchema
इसके बजाय इस तरह दिखना चाहिए:
var deviceSchema = schema({
name : String,
type : String,
room: {type: mongoose.Schema.Types.ObjectId, ref: 'Room'},
users: [{type:mongoose.Schema.Types.ObjectId, ref: 'User'}]
});