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

21 lines
328 B
GraphQL

fragment Breadcrumbs on AccountPage {
breadcrumbs {
title
parents: parentsConnection {
edges {
node {
... on AccountPage {
breadcrumbs {
title
}
system {
uid
}
url
}
}
}
}
}
}