Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
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?