Hi Guys,

We might have seen how to remove duplicates using the distinctBy function of DW 2.0.

But what if we have a scenario where we need to know what are the values that are repeated more than once?

In that case, I have written a small function to identify the duplicate values that are present in an array.

Just to explain about the function I have written below:

  • distinctVal is a variable which returns distinct Values by removing duplicates
  • duplicates is a variable which iterates distinctVal data which we got in the above step over original data and checks if the value is repeated more than once.

Let’s consider an array which has values [ “a” , “b” ,“a” ,“c” ,“d”, “e” ,“c” ,“f” ]

In the above array, we see that values “a” and “c” are repeated more than once and we have to find that using DataWeave code. Let’s do it!

DataWeave code:

JSON

So here :

distinctValues” are the final array of values by removing the values which are repeated

duplicatesAre” will display the values that are repeated more than once.

In this way, you can find the duplicate values in an array using DataWeave 2.0

#function

Identifying Duplicate Values in an Array using Mule 4 DataWeave 2.0
16.95 GEEK