How to refer to a sub collection from another collection in MongoDB/Mongoose?
I have a collection in mongo, let's call it Parent, with a property called children, something like this const ParentSchema = mongoose.Schema({ children: [{ //children properties }], //other collection properties When I save a record in this collection, every child…