Files
web/lib/graphql/Query/BreadcrumbsMyPages.graphql
2024-05-06 13:44:22 +02:00

13 lines
262 B
GraphQL

#import "../Fragments/MyPages/Breadcrumbs.graphql"
query GetMyPagesBreadcrumbs($locale: String!, $url: String!) {
all_account_page(locale: $locale, where: { url: $url }) {
items {
...MyPagesBreadcrumbs
system {
uid
}
}
}
}