上图,是我构建的知识图谱。我想要做的是使用 Python 根据节点“t1”和“t2”的 id 形成公式“t2-t1>6”。
我尝试使用 Python 驱动程序解决此问题,如下所示
with driver.session() as session:
result = session.read_transaction(lambda tx:
tx.run(
"""
MATCH (n1:t1{id: $id1}), (n2:t2{id: $id2})
RETURN n1.value - n2.value > 6 as myBooleanResult
""",
id1=179, id2=199).single()["myBooleanResult"]
)
print(result)
但是却报错了,如下
TypeError: 'NoneType' object is not subscriptable
我的代码对吗?你如何形成一个公式?