De-Duplicate Array

Hi,
Can someone point me in the right direction of how I can de-duplicate an array?

For example I have a list of CVEs, what I’d like to do is make sure there are no duplicates…

You could use a python step and set()

return {"result": set({{input}}}

Oh wait… we have a plugin for that already:

1 Like

bingo… cheers

You can also use the “array match” option of the type converter plugin! Just pass the same array in for both array 1 and array 2 and select “deduplicate”