How to do import mapping for Nested tree structure and store in mendix database?

0
Hi All,   I am using Ant Design Tree Select to show tree json. It works perfectly fine when json is in string. But I want to map nested tree into domai model using import mapping.   For this example consider below json [    {        "label": "Node1",        "value": "Node1",        "children": [            {                "label": "Child Node1",                "value": "Child Node1",                "children": [                    {                        "label": "Grand Child Node1",                        "value": "Grand Child Node1"                    },                    {                        "label": "Grand Child Node2",                        "value": "Grand Child Node2"                    }                ]            },            {                "label": "Child Node2",                "value": "Child Node2",                "children": [                    {                        "label": "Grand Child Node11",                        "value": "Grand Child Node11"                    },                    {                        "label": "Grand Child Node22",                        "value": "Grand Child Node22"                    }                ]            }        ]    }]   So children will also have more children. There is one Json to Tree module in marketplace but its download button is disabled.
asked
0 answers