Any workround for hierarchical collection

Hi,

I want to create product category content type which has multiple children content types, for example, clothing has jackets, tops, etc., and jackets have leather jackets, bombers etc…

Is there anyway to make it?

Thanks in advance

1 Like

You could make a self referencing relation (using something like the manyWay, far right on the relational matrix) or you could have a parent category model and a child sub-category model and then just customize the controller to return 3 layers of nested data.

Largely up to you how you want to handle it.

2 Likes

Thank you!