+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

Related questions

0 votes
+1 vote
asked Jan 27, 2023 in Neo4j by sharadyadav1986
+1 vote
+1 vote
+1 vote
asked Jan 25, 2023 in Neo4j by sharadyadav1986
...