Google News
logo
Neo4J - Interview Questions
How to use set clause in neo4j?
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 following syntax :

Syntax : 
MATCH (node:label{properties . . . . . . . . . . . . . . })
SET node.property = value 
RETURN node
Advertisement