I am developing using express js and npm module mongodb with mongodb as database. I have two collections namely \"users\" and \"activities\". There can be 1000s of activities of
You should store just the _id of the User in the Activity. Then use that to access the User via the Activity (if that's what you want to do).