Consider that I'm working on a graph database and there are some nodes at some label i.e labe14 and now what I want to do is to update the properties of all the nodes and add the another one at once to each of them. How could it be done?
To add or update the property of a single node I know I can use this command:
MATCH (n:label4 {id: 123})
SET n.newProperty = 'new value'
However how to do this for many nodes at once using a single Cypher Query?
Hoping for a great help!