def property(self, *args, **kwargs):
# if positional args were passed, we punt to the parent function
if args:
return super(Transaction, self).property(*args, **kwargs)
return self._node_edge_property(Property, **kwargs)
# return nodes iterator, optionally for a specific type
评论列表
文章目录