Files
web/lib/graphql/Fragments/Refs/Breadcrumbs.graphql
2024-05-30 16:01:04 +02:00

49 lines
772 B
GraphQL

#import "./System.graphql"
fragment MyPagesBreadcrumbsRefs on AccountPage {
breadcrumbs {
parentsConnection {
edges {
node {
... on AccountPage {
system {
...System
}
}
}
}
}
}
system {
...System
}
}
fragment LoyaltyBreadcrumbsRefs on LoyaltyPage {
web {
breadcrumbss {
title
parentsConnection {
edges {
node {
... on AccountPage {
breadcrumbs {
title
}
system {
uid
locale
content_type_uid
}
url
}
}
}
}
}
}
system {
...System
}
}