+1 vote
in Neo4j by
How to use set clauses in neo4j?

1 Answer

0 votes
by
The Set clause in Neo4j can be used to add new properties to an existing relationship or node. It can also be used to update or add existing properties values. To set a property in a node, here is:

Example

syntax:-

MATCH (node:label{properties . . . . . . . . . . . . . . })

SET node.property = value

RETURN node
...