Attaches an existing node to another existing node.
Available in a network database and requires the star$network role.
Parameters:
| Name | Optional | Type | Description |
| node$ | Mandatory | Text | The name of the node to be attached. |
| parent$ | Mandatory | Text | The name of the parent node to attach to. |
Examples:
SELECT attach_node('mynode','myparent'); -- Attaches 'mynode' as child of 'myparent'
Tips:
- The star$nodes view indicates which nodes exist and the parent nodes they are attached to.
Comments
Article is closed for comments.