N+1 Select Problem
Occurs when fetching 1 parent requires N additional SQL calls. Solved via `JOIN FETCH` or `@EntityGraph`.
Why N+1 queries happen and how JOIN FETCH solves it.
Occurs when fetching 1 parent requires N additional SQL calls. Solved via `JOIN FETCH` or `@EntityGraph`.