0

我有一个由 - 定义的节点类

class Person(StructuredNode):
    attr = StringProperty(unique_index=True)
    name = StringProperty(unique_index=True)

如果我已经使用 nodes.filter() 获取了两个 Person Nodesets,有没有办法使用 Neomodel 库以编程方式获取它们之间存在的所有关系而不使用 cypherquery() ?

4

1 回答 1

0

好吧,感谢精心编译的 Neomodel 文档,发现这可以使用 neomodel.match.Traversal 来实现

于 2020-06-28T06:19:33.543 回答