Files
web/lib/graphql/Query/LoyaltyPage/MetaData.graphql

34 lines
594 B
GraphQL

#import "../../Fragments/MetaData.graphql"
#import "../../Fragments/System.graphql"
query GetLoyaltyPageMetaData($locale: String!, $uid: String!) {
loyalty_page(locale: $locale, uid: $uid) {
web {
seo_metadata {
description
title
...MetaDataImageConnection
}
breadcrumbs {
title
}
}
heading
preamble
hero_image
blocks {
... on ContentPageBlocksContent {
__typename
content {
content {
json
}
}
}
}
system {
...System
}
}
}