Files
web/lib/graphql/Fragments/Refs/Breadcrumbs.graphql

52 lines
827 B
GraphQL

#import "./System.graphql"
fragment AccountPageBreadcrumbsRefs on AccountPage {
web {
breadcrumbs {
title
parentsConnection {
edges {
node {
... on AccountPage {
breadcrumbs {
title
}
system {
...System
}
}
}
}
}
}
}
system {
...System
}
}
fragment LoyaltyPageBreadcrumbsRefs on LoyaltyPage {
web {
breadcrumbs {
title
parentsConnection {
edges {
node {
... on AccountPage {
breadcrumbs {
title
}
system {
...System
}
}
}
}
}
}
}
system {
...System
}
}