20 lines
342 B
GraphQL
20 lines
342 B
GraphQL
#import "../Fragments/ContentPage/Breadcrumbs.graphql"
|
|
|
|
query GetContentPage($locale: String!, $uid: String!) {
|
|
content_page(uid: $uid, locale: $locale) {
|
|
title
|
|
header {
|
|
heading
|
|
preamble
|
|
}
|
|
hero_image
|
|
...ContentPageBreadcrumbs
|
|
system {
|
|
uid
|
|
created_at
|
|
updated_at
|
|
locale
|
|
}
|
|
}
|
|
}
|