How to filter a llist object on basis of another object property

0
I have two objects with their according properties in a microflow: $Project/Name - an object received from a form derived from a parameter $HourEntry/Project - this is a list object derived from the database Within my microflow I would like to create a new list in which the hourentry/project meets the project/name. Question: How?
asked
1 answers
2

There is no filter function like that, but you can just iterate over the list, then compare values within the list and add matching items to a new list.

answered