Help for this page
CREATE TABLE node (node_id, <bunch of other node related columns>); CREATE TABLE edge (edge_id, from_node_id, to_node_id, <bunch of other +edge related columns>);
sub _edges { my (%args) = @_; ... return 0; }