Hi @tarendran.vivekanand,
You could take a look at APOC Triggers to see if they meet the need.
This will allow you to define a check pre-commit with a custom error message, for your example I think the following works
CALL apoc.trigger.add("checkName...
Hi @dmellonielet,
The specific error you are seeing using apoc.refactor.rename.label is because it expects you to YIELD something, so the command should be e.g.
CALL apoc.refactor.rename.label("xyz_assets","abc_assets", nodes) YIELD errorMessages
The...