Pedro Alves
Results
1
comments of
Pedro Alves
I stumbled upon a similar problem but with another annotation. Consider this repository: ``` interface AssignmentRepository : JpaRepository { @EntityGraph(attributePaths = ["tags"]) override fun findById(id: String): Optional } ``` In...