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
@EntityMapping methods can load entities of a given type in batch mode by returning List<T>, Mono<List<T>>, CompletableFuture<List<T>>, and others. We can also support Flux<T>, and adapt via Flux#collectList.
rstoyanchev
changed the title
Support returning Flux of entities from from @EntityMapping methods
Support returning Flux of entities from @EntityMapping methods
Jun 7, 2024
@EntityMapping
methods can load entities of a given type in batch mode by returningList<T>
,Mono<List<T>>
,CompletableFuture<List<T>>
, and others. We can also supportFlux<T>
, and adapt viaFlux#collectList
.Based on #922 (comment) by @gianielsevier.
The text was updated successfully, but these errors were encountered: