Creating Connections

Method 1: Node Relationships (Easier)

Add parent/child relationship fields to your node data type using Node parents field or Node children field (ID or list of IDs). For example, each node can have a "Parent node" field referencing another node's ID. The plugin automatically creates edges between related nodes when loading.

We use this method in Main Demoarrow-up-right.

Method 2: Separate Edge Data (More Flexible)

Create a separate "Connection" data type with Edge source field and Edge target field. Load both node and edge lists in the Load nodes and edges action.

See this method in action in Node Relationships Demoarrow-up-right.

Last updated