Add one-way connection between 2 PointGraph nodes?

How do I add a connection (one way) between a node and another via script? Is the method node.AddConnection(node2) a one way direction or bidirectional?

Hi

node.AddConnection is one-way, so you would need to call it on both nodes to get a bidirectional connection.