Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-10-2019 07:35 AM
10-10-2019 10:37 AM
Hi,
I don't understand exactly if you want to add a new property to existing node or create a new node.
In case 1:
MATCH (c)
WITH c
SET c.fullName = c.name + " " + c.lastName
In case 2:
MATCH (c)
WITH c
CREATE (cc:LabelCopy {fullName: c.name + " " + c.lastName})
All the sessions of the conference are now available online