Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个由 - 定义的节点类
class Person(StructuredNode): attr = StringProperty(unique_index=True) name = StringProperty(unique_index=True)
如果我已经使用 nodes.filter() 获取了两个 Person Nodesets,有没有办法使用 Neomodel 库以编程方式获取它们之间存在的所有关系而不使用 cypherquery() ?
好吧,感谢精心编译的 Neomodel 文档,发现这可以使用 neomodel.match.Traversal 来实现