When using an ORM, when would it be better to add fields to a user object and lazy load them vs making a separate repository query?
I am building out a Spring Boot backend using Hibernate and JPA. I have a user object that I plan to fetch given a JWT per request. But past that I am unsure what would be the best way to fetch related info to the user such as a list of other objects that belong to the user.