35 lines
598 B
GraphQL
35 lines
598 B
GraphQL
#import "../../Fragments/MetaData.graphql"
|
|
#import "../../Fragments/System.graphql"
|
|
|
|
query GetContentPageMetaData($locale: String!, $uid: String!) {
|
|
content_page(locale: $locale, uid: $uid) {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
seo_metadata {
|
|
description
|
|
title
|
|
...MetaDataImageConnection
|
|
}
|
|
}
|
|
header {
|
|
heading
|
|
preamble
|
|
}
|
|
hero_image
|
|
blocks {
|
|
... on ContentPageBlocksContent {
|
|
content {
|
|
content {
|
|
json
|
|
}
|
|
}
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|