19 lines
342 B
GraphQL
19 lines
342 B
GraphQL
#import "../../Fragments/Metadata.graphql"
|
|
#import "../../Fragments/System.graphql"
|
|
|
|
query GetAccountPageMetadata($locale: String!, $uid: String!) {
|
|
account_page(locale: $locale, uid: $uid) {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
seo_metadata {
|
|
...Metadata
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|