Kuzu::

Rel class

Kuzu rel (relationship) class

Attributes

dst_id R

The internal id value of the destination node

label R

The label value of the given node

properties R

The Hash of the Rel’s properties, keyed by name as a Symbol

src_id R

The internal id value of the source node

Public Class Methods

new( src_id, dst_id, label, **properties )

Create a new Rel with the given id, label, and properties.

# File lib/kuzu/rel.rb, line 18
def initialize( src_id, dst_id, label, **properties )
        @src_id = src_id
        @dst_id = dst_id
        @label = label
        @properties = properties
end