I have a node class defined by -
class Person(StructuredNode):
attr = StringProperty(unique_index=True)
name = StringProperty(unique_index=True)
Provided that I have fetched two Person Nodesets using nodes.filter(), Is there a way to fetch all the relations existing between them programmatically using Neomodel libraries without using the cypherquery() ?