inputArray = ["cat", "bat", "mat"]
configuredArray = ["dog", "elephant", "fox", "cat"]
inputArray and configuredArray are variable length String arrays.
If any one element of the inputArray is present in the configuredArray I would like to set a bloolean flag.
How do I write it in Dataweave 2.0? Thanks in advance.