Link
A navigation link including its URL, title, type, and related child links.
Type Definition
type Link {
levels: Int
links: [Link]
title: String
type: String
url: String
target: String
product: Product
productGroup: ProductGroup
page: Page
article: Article
}Fields
Relationships
The Link type represents a hierarchical navigation structure. It can point to various content types in the system through its optional relationship fields: Product, ProductGroup, Page, and Article. Links can contain child links through the links field, allowing for nested navigation hierarchies with configurable depth through the levels field.
Example
{
title
url
type
target
levels
links {
title
url
type
}
product {
id
name
}
productGroup {
id
name
}
}Implements
None