Updating properties on nodes and relationships is done with the SET clause.
SET
To set a property on a node or relationship, use SET.
Query
START n = node(2) SET n.surname = 'Taylor' RETURN n
The newly changed node is returned by the query.
Result
Node[2]{name:"Andres",age:36,surname:"Taylor"}
Copyright © 2012 Neo Technology