...
The Root node: In the image above, observe how the root node of the tree is represented: it is the top-level item node, identified by sharing its name with the current item on which the view is opened. i.e.
Create Banking app MVP - Beta
Types of nodes:
Item node: In the image above,observe that each of the relevant monday.com items is represented as an Item node. For instance, the nodes:
Create Banking app MVP - Beta
,Login Methods
,Ability to Link bank account
are all item nodes, which correspond to the respective Monday monday items of the same names.Link node: Here, let us consider one item related to the current item.Observe the snippet below taken from the default Main Table View.The current item
Create Banking app MVP - Beta
is connected to the itemLogin Methods
via the board connection namedRequires
(along with two other items).Now, observe below that in the hierarchical view, the node
Create Banking app MVP - Beta
has the child link-nodeRequires
, which is the name of the corresponding column. The values of this column are shown as its children item nodes. Identify that the nodeLogin Methods
is present here as a child node toRequires
. (along with the other connected values).
Expansion Toggler: Observe that in the image below, clicking the
▶️
icon of a node toggles the visibility of its children.
...