Check whether a node exists, if not create

前端 未结 1 918
梦如初夏
梦如初夏 2021-02-03 23:39

Im trying to make a database were everytime a node does\'t exist it will create a new one and set a relationship between this node and another. If the node exists, both nodes ge

1条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-04 00:16

    When using MERGE on full patterns, the behavior is that either the whole pattern matches, or the whole pattern is created. MERGE will not partially use existing patterns — it’s all or nothing. If partial matches are needed, this can be accomplished by splitting a pattern up into multiple MERGE clauses. http://docs.neo4j.org/chunked/stable/query-merge.html

    MERGE (n)-[:know {r:'123'}]->(test2 {name:'2'}) will try to match the entire pattern and since it does not exist, it creates it. What you can do is:

    MERGE (n {name: '3'}) //Create if a node with name='3' does not exist else match it
    MERGE (test2 {name:'2'}) //Create if a node with name='2' does not exist else match it
    MERGE (n)-[:know {r:'123'}]->(test2) //Create the relation between these nodes if it does not already exist
    

    0 讨论(0)
提交回复
热议问题