I have a db of almost 50000 nodes and almost 300k properties connected to those nodes.
I was able to rename node labels like below:
// Rename x Node labels
MATCH (n:OLD_LABEL {id:14})
REMOVE n:OLD_LABEL
SET n:NEW_LABEL
MATCH (n:CLASSIFICATIONSTANDARD)
REMOVE n:CLASSIFICATIONSTANDARD
SET n:Eclass;
But when I try to change the name of a property for all nodes the neo4j crashed. Can I run this script in a batch of 1000 each?