18 lines
448 B
GraphQL
18 lines
448 B
GraphQL
#import "../Fragments/MyPages/AccountPageContentDynamicContent.graphql"
|
|
#import "../Fragments/MyPages/AccountPageContentShortcuts.graphql"
|
|
|
|
query GetAccountPage($locale: String!, $url: String!) {
|
|
all_account_page(limit: 1, locale: $locale, where: { url: $url }) {
|
|
items {
|
|
url
|
|
title
|
|
content {
|
|
__typename
|
|
...AccountPageContentDynamicContent
|
|
...AccountPageContentShortcuts
|
|
}
|
|
}
|
|
total
|
|
}
|
|
}
|