1.

How to use set clause in neo4j?

Answer»

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



Discussion

No Comment Found