InterviewSolution
Saved Bookmarks
| 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 syntax:- MATCH (node:label{properties . . . . . . . . . . . . . . }) SET node.property = VALUE RETURN node |
|