#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 { ...Metadata } } header { heading preamble } hero_image blocks { ... on ContentPageBlocksContent { content { content { json } } } } system { ...System } } }