'Graph' object has no attribute 'find_one' 766 'Graph' object has no attribute 'find_one' 767
时间: 2023-11-18 16:04:07 浏览: 159
module ‘tensorflow’ has no attribute ‘get_default_graph’
这个错误是由于py2neo的V3和V4版本方法大多更新导致的。在V4版本中,'find_one'方法已被删除。相反,您可以使用'nodes.match'方法来查找节点。以下是两个版本的解决方法:
V3版本中:
```python
user = graph.find_one('User', 'username', self.username)
```
V4版本中:
```python
from py2neo import NodeMatcher
matcher = NodeMatcher(graph)
user = matcher.match('User', username=self.username).first()
```
阅读全文