Files
web/lib/graphql/Query/ContentPage.graphql
2024-08-22 09:49:02 +02:00

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
}
}
}