mongoose so that updating any field in one model causes the other model to update its field.
for instance, let’s say we have two models “Teacher” and “Course”, in every Course document , there is a field called teacher which has an objectId type and a ref to a teacher document.
and every teacher document has a field called courses which is an array of objects that each has a reference to a course document.
whenever I set a teacher to a course model , I want that teacher document to also update itself and add that course to the courses field.
Does mongoose provide anything out of box to do this?? If not what is the best way of doing it?
.?!
I probably wouldn't keep a course array in the Teacher model, just query courses where teacher is X
Обсуждают сегодня