I know this is a newb question, but I’m stuck and wondering if there is any way to have multiple paths lead to a single workflow. Essentially I was hoping to have 2 separate Webhooks that will define how various data gets processed. In the end, I do the exact same queries and write the same information to a database. The final operations are a bit complex and I’m hoping I don’t have to replicate them into new scenarios and then maintain hundreds of modules across various scenarios.
If I had a router with 2 inputs I would simply listen for the webhooks, process the appropriate data, then send to my final operations. Is there a way to combine data paths into a single processing workflow?
Here’s an example.
In this path, I iterate through different dates and then process the workflow.
In this path, I just pass in a single date and process the workflow (no iteration required).
The end processing workflow remains identical though. Can I connect the two previous paths to this end workflow somehow?