neo4j :: NeoNodeCollection :: register
SEE: add SEE: create_node
add
create_node
# Add the specified node to the graph and set its local ID. # # SEE: `add` # SEE: `create_node` fun register(node: NeoNode) is abstract
redef fun register(node) do nodes.add node id_of(node) = nodes.length length += 1 end