Hi Community ,We have a requirement where we have to compare two lists of map , Both the Map have same values but these map are created from different query statement.I want those Keys where Values are different.
For Eg :
Map1 : [[id:230,no:0]; [id:223,no:1]; [id:232,no:1]; [id:264,no:1]]Map 2 : [[id:230,no:1]; [id:223,no:2]; [id:232,no:1]; [id:264,no:1]]
I need a expression rule which gives result as 230, 223 bcz Map 2 values are different in it.
Many Thanks !
Regards,ASK
Discussion posts and replies are publicly visible
local!diff:symmetricdifference(local!Map1,local!Map2), union(index(local!diff,"id",{}),index(local!diff,"id",{}))