In a nutshell, my domain allows users to submit stories (about a person or team of people) that contain a multitude of different states and transitions its can be in and what behavior is allowed during those states.
So, at this state in the design, users are creating drafts and submitting their stories. My domain contains Stories, Teams, and Team Members.
My first question is who has the responsibility to load the complete aggregate? Should the application layer specify this based on the task at hand? Should he really need to know what all data needs loaded? Or should this belong to the repository that always eager loads the associated data? Maybe use lazy loading (transparency can be a little scary)?
For my next task, I need to allow comments to be added to stories and create records whenever a user views a story. Would this belong to the aggregate since they have no meaning without a story? Here is my confusion. If they do belong to the aggregate, I would have to load the entire aggregate when adding a comment or simply adding a record it has been viewed?
Any help would be great and as you can see, I'm new to DDD.
Thanks!