fix: adding @EntityGraph to eliminate N+1
This request fixes an N+1 ORM inefficiency discovered in the VetRepository.
Fix: QueryGraph has been added that adds a join to the Vet SELECT and eliminates the extra queries.
- AppMap of a test
shouldFindVet
before the fix - AppMap of a test
shouldFindVet
after the fix