How to push values to property array Cypher-Neo4j

前端 未结 3 1563
忘了有多久
忘了有多久 2020-12-24 14:09

I am new to Neo4j,I have two nodes user and files with a relationship :contains, the relationship has a property idwhich

3条回答
  •  执笔经年
    2020-12-24 14:42

    full query for newbies

    MATCH (a:Application {name:'A'})-[r:REQUEST_TO]-(d:Application {name:'B'})
    WHERE ID(r) = 684
    SET r.id = r.id + 'New Id'
    

提交回复
热议问题