Kuzu::

Node class

Kuzu node class

Attributes

id R

The internal id value of the given node

label R

The label value of the given node

properties R

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

Public Class Methods

new( id, label, **properties )

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

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