determine which event happened?

0
I have next input page: In the last reference selector I created a list which is created by a microflow based on the input of the other 3 reference selectors. If I change “Vak” I created a microflow that empties the other 3 objects: I want to prevent to create a new microflow for every single reference selector. Is there a way to let the microflow determine which OnChangeEvent of which selector happened or is there an other way to re-use this microflow?
asked
1 answers
1

I think you will need to create a microflow per possible input. The only option I see is to commit the object at the end of the on change microflow. At the beginning of the microflow you can then compare the cached version to the database version. This is an option to determine wich value has changed. But depending on your use case, you may not want to commit every time.

answered