0

我在一个项目中使用了 python neo4j rest 客户端,刚刚切换到 Py2neo。

我试图通过其 ID 从数据库中获取一个节点,但出现以下错误:

AttributeError: 'GraphDatabaseService' object has no attribute 'get_node'

我使用了get_node函数(http://nigelsmall.com/_api/py2neo/neo4j.html#py2neo.neo4j.GraphDatabaseService.get_node

我做错了什么还是应该更新文档?

谢谢

4

1 回答 1

2

The link I was referring to wasn't updated according to Nigel Small

For py2neo > v1.5, we can get a node by Id as follows : my_node = graph_db.node(id)

于 2013-08-16T12:24:00.030 回答