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