In fact I regularly need the inverse of a router but I can’t find one. So I’m struggling…
Let me explain.
A router is 1 input and several outputs. I often use them in particular to set conditions.
But from different branches created I would like to find a common base so that all these branches form one.
Example of use:
I have a scenario of 20 steps.
At the 3rd step I have to add a module if a data is true.
I use a router for this, one branch if the data is true, and the other if it is false.
After this step the whole base is the same again.
But since I can’t find a merging module it’s 2 branches after the router, I have to duplicate my 17 modules on each branch.
Which is a pain to maintain, all that for one more step.
And if I have the case again, I end up with 50 modules when in theory 22 modules would be enough for me!