Remove duplicates from list transform action
Use case
You are working with a list of users however, the dataset contains multiple objects with the same GUID, you would like to remove the duplicates from the list.
Overview

Returns a list of unique items from the given list/iterable.
Parameters
Parameter
Description
Required
Attribute
Filter objects with unique values for this attribute; Only required for lists of objects.
Case Sensitive
Treat upper and lowercase strings as distinct.
List
List to remove duplicates from.
Usage
Results output
The expected output for this transform is a new list of the unique items from the previous list.
Result of Example 1:
[
{
"member": true,
"username": "Dan"
},
{
"member": false,
"username": "Bob"
}
]
Result of Example 2:
[
1,
2,
3,
4,
5
]
Last updated
Was this helpful?