21 lines
307 B
GraphQL
21 lines
307 B
GraphQL
#import "./System.graphql"
|
|
|
|
fragment MyPagesBreadcrumbsRefs on AccountPage {
|
|
breadcrumbs {
|
|
parentsConnection {
|
|
edges {
|
|
node {
|
|
... on AccountPage {
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|