updating multiple properties in Cypher (neo4j) -
i cannot update node using set multiple properties in neo4j, there way handle this?
start n=node:wordindex(word='repine') set n.wordtype = 'rare' return n
if want add n.link = "..." how done?
start n=node:wordindex(word='repine') set n.wordtype = 'rare', n.link='link' return n
should it
Comments
Post a Comment