diff --git a/documentation/src/main/asciidoc/introduction/Interacting.adoc b/documentation/src/main/asciidoc/introduction/Interacting.adoc index 424c2c557ae5..5ac4db53828a 100644 --- a/documentation/src/main/asciidoc/introduction/Interacting.adoc +++ b/documentation/src/main/asciidoc/introduction/Interacting.adoc @@ -346,6 +346,8 @@ Finally, the Hibernate `Session` offers the following method, which is capable o | `findMultiple(Class,List,FindOption...)` | Obtain a list of persistent objects given their type and their ids, using the specified options +| `findMultiple(EntityGraph,List,FindOption...)` +| Obtain a list of persistent objects given their ids and an `EntityGraph` specifying their type and associations which should be eagerly fetched, using the specified options |=== The following code results in a single SQL `select` statement: