Neo4j版本升高不能使用graph.cypher.execute
时间: 2023-02-17 08:02:50 浏览: 107
neo4j-community-5.11.0-windows.zip
在升级 Neo4j 到最新版本后,如果不能使用 graph.cypher.execute,你可以尝试使用 graph.run() 或者 graph.execute() 来执行 Cypher 查询。这两个方法都是在 Neo4j 的 Python Driver 中提供的,用于在 Neo4j 图数据库中执行 Cypher 查询。
你还可以尝试使用 graph.begin() 方法开启事务,然后使用 .run() 方法执行 Cypher 查询。这是一种在 Neo4j 中使用 Python 进行查询的常见方法。
如果仍然无法使用,你可以检查一下你的代码是否与新版本的 Neo4j 兼容,或者查看新版本的 Neo4j 文档,看看有没有相关的更新或者更改。
阅读全文