Content Delivery API > Tree-like collections

Tree-like collections

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:

query {
allCategories(filter: {parent: {exists: false}}) {
name
children {
name
children {
name
children {
name
}
}
}
}
}