Files
web/lib/graphql/Fragments/Refs/Breadcrumbs.graphql
2024-05-06 15:13:41 +02:00

21 lines
307 B
GraphQL

#import "./System.graphql"
fragment MyPagesBreadcrumbsRefs on AccountPage {
breadcrumbs {
parentsConnection {
edges {
node {
... on AccountPage {
system {
...System
}
}
}
}
}
}
system {
...System
}
}