39 lines
690 B
GraphQL
39 lines
690 B
GraphQL
#import "../System.graphql"
|
|
|
|
fragment ContentPageBreadcrumbsRefs on ContentPage {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
parentsConnection {
|
|
edges {
|
|
node {
|
|
... on ContentPage {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
... on LoyaltyPage {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|