Files
web/lib/graphql/Fragments/ContentPage/Breadcrumbs.graphql
2024-08-22 09:49:02 +02:00

38 lines
698 B
GraphQL

fragment ContentPageBreadcrumbs on ContentPage {
web {
breadcrumbs {
title
parentsConnection {
edges {
node {
... on ContentPage {
web {
breadcrumbs {
title
}
}
system {
locale
uid
}
url
}
... on LoyaltyPage {
web {
breadcrumbs {
title
}
}
system {
locale
uid
}
url
}
}
}
}
}
}
}