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 ap...