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

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -