Issue with flatMapMany on transformation of Mono<T>
I am currently working with Spring WebFlux (Kotlin) where i am trying
to map a Mono type to another Flux type. Unfortunately i won't get the expected
results.
First i request an outfit, which will return a: Mono
val outfit = Mono.just(Outfit(
outfitId = "123",
outfits = listOf(listOf("1", "2"), listOf("3", "4"))))
Then i want to get the product information for each id in the outfits attribute. I try to achieve this
by calling the following function
fun products(ids: List): Flux...