I got the data model that has three nodes that are connected with three relations.
By looking at the model it makes no sense to me to store both 2 and 3 letter codes for each Country so I would like to delete all 2 letter ISO codes from countries.
I've tried to run the following code but I get no return.
MATCH (n:Country)
WHERE exists(n.iso_2_code)
REMOVE n.iso_2_code
RETURN n
What should I do? Is there an alternative way?