How do I extract the distinct values from a list or entity and save it?

0
I need an action activity or function in the microflows that will apply a function to only get distinct values from a list. (or an entity) so that I can further add it to another list.
asked
1 answers
0

there is no distinct operation in list operation.

I would suggest to use the OQL module and create your own request:

"select distinct XXXX from XXXX" to get all distinct values

answered