I want to add a item in a attribute which is a list, if that item does not already exists in the list of that attribute. Is there any way I can write the same in UPDATEEXPRESSION?
I need below like result the order of item does not matter:
[1,2,3,4]+[5]=[1,2,3,4,5]
[1,2,3,4]+[3]=[1,2,3,4]
[1,2,3,4]+[3,5]=[1,2,3,4,5]