我想通过使用py2neo得到一些路径,但是我没有找到正确的方法,所以我选择使用graph.run(),当我运行下面的语句时:
t='T1018'
path1=graph.run("MATCH path=(m:attack{name:t})-[:next*1..2]->(n:attack) return path").to_series()
它将显示如下错误:
py2neo.errors.ClientError: [Statement.SyntaxError] Variable `t` not defined (line 1, column 27 (offset: 26))
"MATCH path=(m:attack{name:t})-[:next*1..2]->(n:attack) return path"
那么我如何在cypher语句中使用python变量呢?或者有没有办法使用py2neo语句来获取路径呢?^
1条答案
按热度按时间weylhg0b1#
传递参数,如下所示: