Hello
Can someone point me to the feature that will enable me to select the distinct values of a query filter, such as:
[
{'recipientID':538},
{'recipientID':538},
{'recipientID':411},
{'recipientID':533},
{'recipientID':538}
]
Distinct would return:
[
{'recipientID':538},
{'recipientID':411},
{'recipientID':533}
]
I've checked in the Output page, but nothing seems to do the job.
I have seen Distinct Records select, but I don't know what it does.
Thanks.