I have 3 make changes to a thing on a backend where they asses a single field value.
It first checks if conditional A is true and if yes saves value X1 (option set)
Second requires that the first one is empty and checks additional condition if yes sets value X2.
Third is scheduled if both are empty - sets value X3.
What is the proper way to schedule the API Call where I want to use the field value on this item on another workflow, and I need to be sure it is not empty.
As - due to asynchronicity I cannot make a condition Value is not empty as it would fail initially.
I can say if Step 1 is not empty or step 2 is not empty or step 3 is not empty.
But this one doesn’t work somehow as I have a case where it didn’t wait for validation.
So what should be the proper way to schedule this flow that it waits for all 3 conditions?
As I usually have multiple actions which assess a single filed (think of it as an longer if evalution), whats the most optimal way to know it has been done.