I am a newbie to Neo4j. Tried below code
MATCH (n)
WITH DISTINCT labels(n) AS label
UNWIND label AS names
WITH names AS candidate
WHERE candidate =~ '^(.?$|[^I].+|I[^A].)'
CALL apoc.create.setProperty(labels(candidate),'link','')
YIELD node
return n...