48 lines
1.2 KiB
GraphQL
48 lines
1.2 KiB
GraphQL
#import "../Fragments/PageLink/AccountPageLink.graphql"
|
|
#import "../Fragments/PageLink/ContentPageLink.graphql"
|
|
#import "../Fragments/PageLink/LoyaltyPageLink.graphql"
|
|
|
|
query GetNavigationMyPages($locale: String!) {
|
|
all_navigation_my_pages(locale: $locale) {
|
|
items {
|
|
items {
|
|
... on NavigationMyPagesItemsItem {
|
|
__typename
|
|
item {
|
|
link_text
|
|
sub_items {
|
|
... on NavigationMyPagesItemsItemBlockSubItemsItem {
|
|
__typename
|
|
item {
|
|
link_text
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageLink
|
|
...LoyaltyPageLink
|
|
...ContentPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageLink
|
|
...LoyaltyPageLink
|
|
...ContentPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
title
|
|
}
|
|
}
|
|
}
|