cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Vollewijn
Node
Status: New

I'am trying to express in cypher dsl the following cypher query

MATCH (p {name: 'Peter'})

SET p += {age: 38, hungry: true, position: 'Entrepreneur'}

RETURN p.name, p.age, p.hungry, p.position

How can i expres the SET part by using the cypher dsl api?