import { gql } from "graphql-tag" import { Metadata } from "../../Fragments/Metadata.graphql" import { System } from "../../Fragments/System.graphql" export const GetContentPageMetadata = gql` 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 } } } ${Metadata} ${System} `