Trying to break my Flow up into smaller pieces because it takes like 30 minutes to run. Working with Dynamics 365.
I want an Update Flow to run only after the Create Flow has finished running. So at the end of the Create, it should call a number of other Update Flows to run.
The issue with doing something like having the Create Flow update a field in Dynamics 365 to trigger the Update Flows, is that if the user Creates a record, and then updates it immediately afterwards, the Create Flow is likely still running, so when they immediately Update the record after Creating, it will trigger these Update Flows, they'll fail and won't be called again.
So is there a way to call other Flows after one has successfully finished running?