Can the Router function execute multiple workflows if both conditions are met?
Status: Closed · Asked by Jeffrey Yu on · 0 views
If I have a router with multiple workflows, like
ROUTER
If A = 2 ==> Foo Workflow;
If B = 3 ==> Goo Workflow;
Can the router support multiple workflows executing if both workflow conditions are true? E.g. if A=2 and B=3, can both the Foo and Goo Workflows be executed?
Jeff
Yes, all the Routers with TRUE conditions will get executed.
Awesome thank you!