20 lines
330 B
GraphQL
20 lines
330 B
GraphQL
#import "./PageLinks.graphql"
|
|
|
|
fragment Breadcrumbs on CurrentBlocksPage {
|
|
breadcrumbs {
|
|
title
|
|
parentsConnection {
|
|
edges {
|
|
node {
|
|
... on CurrentBlocksPage {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
...CurrentBlocksPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|