Kuzu::

RecursiveRel class

Kuzu recursive relationship class

Attributes

nodes R

The Array of Kuzu::Nodes in the chain

rels R

The Array of Kuzu::Rels connecting the Nodes in the chain

Public Class Methods

new( nodes, rels )

Create a new RecursiveRel with the given nodes and rels.

# File lib/kuzu/recursive_rel.rb, line 18
def initialize( nodes, rels )
        @nodes = nodes
        @rels = rels
end