Interface FetchBuilder

All Superinterfaces:
GraphNodeBuilder
All Known Subinterfaces:
FetchBuilderBasicValued, LegacyFetchBuilder

@Incubating public interface FetchBuilder extends GraphNodeBuilder
Responsible for building a single Fetch instance. Given the following HQL for illustration,
     select b from Book b join fetch b.authors
 
we have a single fetch : `Book(b).authors`
See Also: