You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is also possible to define _ad-hoc_ entity graphs via `@EntityGraph`. The provided `attributePaths` will be translated into the according `EntityGraph` without the need of having to explicitly add `@NamedEntityGraph` to your domain types.
449
+
450
+
.Using AD-HOC entity graph definition on an repository query method.
451
+
====
452
+
[source, java]
453
+
----
454
+
@Repository
455
+
public interface GroupRepository extends CrudRepository<GroupInfo, String> {
0 commit comments