I have a Mongoose offer model explained below: and order schema which has reference to to the first schema offer explained below: the problem that I can not populate sections here {section: { type: Schema.Types.ObjectId, ref: ‘Offer.sections’ }} it gives me MissingSchemaError: Schema hasn’t been registered for model “Offer.sections”. so is there any way to populate sections? Answer Unfortunately, Mongoose