Sorry, no results found for "".
If you have tree-like collections you can use the children and parent attributes to find the top-level objects of the collection and then navigate in depth:
children
parent
1query {2 allCategories(filter: {parent: {exists: false}}) {3 name4 children {5 name6 children {7 name8 children {9 name10 }11 }12 }13 }14}