Fork/join parallelism

It would be great to have fork-join parallelism;

  • I could then based on a webhook trigger, perform multiple strands of execution in parallel
  • then wait for all these strands to finish executing
  • and be able to read all the data in one single “item” from these strands

Use-case:

  • create a new foobar
  • at the same time look up some config for some external API
  • once foobar created, and lookup returned, perform external API call

Currently:

if you merge two predecessor nodes, you get this:

The API could feel all the preceding nodes into items, for example.

Sounds like the Merge-Node with the option “Merge by Key/Index” or also option “Pass-through” Did you check them out?