Hi,
I am working on a filter feature and so far it seems i am not able to apply more than one filter to the search results.
What i want to achieve:
i have two imput parameters in my microflow: SearchResults and SearchFilters.
and i want to implement this pseudo-code logic:
if SearchFilter.filter1 != empty then use action filter list based on filter1 on SearchResults and update the SearchResults list
if SearchFilter.filter2 != empty then use action filter list based on filter2 on SearchResults and update the SearchResults list
if SearchFilter.filter3 != empty then use action filter list based on filter3 on SearchResults and update the SearchResults list
the above should be executed in that order.
how can i achieve this? can i update directly the imput parameter SearchResults and return it after all filtering is done?