Hi, our team is exploring some of synfusion react components.
We have a question regarding data binding of Tree View Component.
I retrieved data from attached screenshot JSON file which has multiple child nodes and nested nodes.

When I tried to set data to fieldsettings in TreeView Component, I found only one "child" properties. Therefore, I can bind only until CommonNodes for now.
const fields = { dataSource: data.projects, id: 'id', text: 'name', child: 'commonNodes', iconCss: 'icon'};
May I know how I can bind multiple child nodes and nested node from my JSON file in Tree View?
Or do I need to follow the structure of having one standard child node name?
Thank you.