Bernardo-MG / development-docs

Documentation and guidelines to help in the development of my own projects.
https://bernardo.gitbook.io/development-docs/
MIT License
0 stars 0 forks source link

JPA entity graphs #117

Open Bernardo-MG opened 6 years ago

Bernardo-MG commented 6 years ago
@NamedEntityGraph(name = "fullAffinityTeamPlayer", attributeNodes = {
        @NamedAttributeNode(value = "abilities", subgraph = "abilities"),
        @NamedAttributeNode(value = "affinities", subgraph = "affinities"),
        @NamedAttributeNode(value = "hated", subgraph = "hated") },
        subgraphs = {
                @NamedSubgraph(name = "abilities",
                        attributeNodes = @NamedAttributeNode("name")),
                @NamedSubgraph(name = "affinities",
                        attributeNodes = @NamedAttributeNode("name")),
                @NamedSubgraph(name = "hated",
                        attributeNodes = @NamedAttributeNode("name")) })