Files
web/lib/graphql/Fragments/MyPages/Breadcrumbs.graphql
2024-05-30 16:07:42 +02:00

26 lines
439 B
GraphQL

fragment MyPagesBreadcrumbs on AccountPage {
web {
breadcrumbs {
title
parentsConnection {
edges {
node {
... on AccountPage {
web {
breadcrumbs {
title
}
}
system {
locale
uid
}
url
}
}
}
}
}
}
}