Hey, Stream concurrency question - Let's say I'm wrapping an API. There are endpoints for listing groups in the organization and one for listing a group members. I've wrapped both with Stream.
Is it possible to detect all groups and their members concurrently without chunking? Right now, for each group in the group stream I'm tapping and then using
mapEffect
mapEffect
for listing the members concurrently, but I'm not sure if it's maximizing the throughout.