This is a great tool. Is there support for nested objects? For example in this case items is the final object and the nesting is present because of "children" parameter. It would be great if we could use this form of nesting in templates for generation.
const items = [
{ id: 0, text: 'Andy' },
{
id: 1, text: 'Harry',
children: [{ id: 2, text: 'David' }]
},
{ id: 3, text: 'Lisa' }
];
This is a great tool. Is there support for nested objects? For example in this case items is the final object and the nesting is present because of "children" parameter. It would be great if we could use this form of nesting in templates for generation.
const items = [
{ id: 0, text: 'Andy' },
{
id: 1, text: 'Harry',
children: [{ id: 2, text: 'David' }]
},
{ id: 3, text: 'Lisa' }
];