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

19 lines
296 B
GraphQL

fragment Breadcrumbs on CurrentBlocksPage {
breadcrumbs {
title
parentsConnection {
edges {
node {
... on CurrentBlocksPage {
breadcrumbs {
title
}
title
url
}
}
}
}
}
}