py2neo graph.merge()与Cypher MERGE的行为有何不同?

时间:2016-03-19 15:13:02

标签: python merge neo4j cypher py2neo

因此,对于空数据库MERGE (N1:A {name:"A"})-[:r]->(N2:B {name:"B"}),将创建两个节点N1N2,它们之间具有边r。但是下面的python代码那样做...但为什么呢?不应该吗?

from py2neo import Graph, authenticate, rel, Node

graph = Graph()

# set up authentication parameters
authenticate("localhost:7474", <user>, <password>)

# clear the data base
graph.delete_all()

graph.merge(rel(Node("A" , name="A"), "r", Node("B" , name="B")))

运行该脚本会导致数据库仍为空。为什么这样,如何在不使用graph.cypher.execute("MERGE ...")的情况下从py2neo获得Cypher合并行为?

2 个答案:

答案 0 :(得分:3)

在Py2neo中graph.merge通过标签和(可选)属性匹配或创建单个节点,您希望在整个模式(节点,关系,其他节点)上进行MERGE。

您在Cypher MERGE语句中使用的模式似乎在Cypher之外的Py2neo中不受支持。

答案 1 :(得分:1)

以下是有关如何合并两个节点关系的示例。

from py2neo import Graph, authenticate, Relationship, Node

server = "localhost:7474"

# set up authentication parameters
authenticate(server, <user>, <password>)

graph = Graph("{0}/db/data".format(server))

# merge nodes and relationship
node1 = Node("A", name="A")
node2 = Node("B", name="B")
node1_vs_node2 = Relationship(node1, "r", node2)
graph.merge(node1_vs_node2)

结果是: Nodes A and B related after a merge