diff --git a/app/[[...slug]]/page.tsx b/app/[[...slug]]/page.tsx index b02aab3..d104c8c 100644 --- a/app/[[...slug]]/page.tsx +++ b/app/[[...slug]]/page.tsx @@ -20,8 +20,8 @@ const getPage = async (slug: string, locale: string, preview = false) => { items { topSectionCollection(limit: 10) { items { - ...ComponentHeroBannerFields - ...ComponentDuplexFields + ...ComponentHeroBannerFields + ...ComponentDuplexFields } } } @@ -31,16 +31,16 @@ const getPage = async (slug: string, locale: string, preview = false) => { [ComponentHeroBannerFieldsFragment, ComponentDuplexFieldsFragment] ); return ( - await graphqlClient(preview).request(pageQuery, { + await graphqlClient(preview).query(pageQuery, { locale, preview, slug, }) - ).pageCollection?.items?.[0]; + ).data?.pageCollection?.items?.[0]; }; const getPageSlugs = async () => { - const pageQuery = graphql(/* GraphQL */ ` + const pageQuery = graphql(` query PageSlugs($locale: String) { # Fetch 50 pages. Ideally we would fetch a good sample of most popular pages for pre-rendering, # but for the sake of this example we'll just fetch the first 50. @@ -52,12 +52,12 @@ const getPageSlugs = async () => { } `); - const pages = await graphqlClient(false).request(pageQuery, { + const pages = await graphqlClient(false).query(pageQuery, { locale: "en-US", }); return ( - pages?.pageCollection?.items + pages?.data?.pageCollection?.items .filter((page) => page?.slug) .map((page) => ({ slug: page?.slug === "home" ? "/" : page?.slug, @@ -86,7 +86,7 @@ export default async function LandingPage({ ); } -export const revalidate = 60; +export const revalidate = 120; export async function generateStaticParams() { return (await getPageSlugs()).map((page) => ({ diff --git a/app/layout.tsx b/app/layout.tsx index a8ce5d9..d208855 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -27,10 +27,14 @@ export default async function RootLayout({ [NavigationFieldsFragment] ); - const layoutData = await graphqlClient(isDraftMode).request(layoutQuery, { - locale: "en-US", - preview: isDraftMode, - }); + const layoutData = await graphqlClient(isDraftMode).query( + layoutQuery, + { + locale: "en-US", + preview: isDraftMode, + }, + { fetchOptions: { next: { revalidate: 60, tags: ["menu"] } } } + ); return ( @@ -47,7 +51,9 @@ export default async function RootLayout({ >
- +
{children}
diff --git a/docs/decisions/007-adopt-urql.md b/docs/decisions/007-adopt-urql.md new file mode 100644 index 0000000..b276f7e --- /dev/null +++ b/docs/decisions/007-adopt-urql.md @@ -0,0 +1,48 @@ +# Adopt urql as a graphql client library. + +Date: 2024-04-22 + +Status: accepted + +## Context + +While graphql-request was perfectly capable minimal client, it was never meant to be the end-game for a serious data-fetching solution. The problem with graphql-request as a client were evident: + +1. No support for Next.js extra fetch parameters like revalidate, tags or data cache in general (Next Data Cache) +2. No support for complex auth ar Automated Persistent Queries middlewares. +3. No path to grow into a hybrid RSC and Client fetching library (with mature client-side caching ecosystem) + +Even though the selling point of Client data fetching library for SSRed client components is not strong yet, it's probably a bonus if we have to ever allow client-fetching use-cases, main driver though for adopting a different approach was points (1) and (2). + +Since Contentful's GraphQL endpoint has a recent addition of APQ and benefits unique to it (request caching and smaller body size), we had to start using APQ in our starter + +There are only 2 libraries that offer out of the box APQ support, and you could roll your own, but why do that? It is Apollo Client and Urql. + +Both libraries are well maintained, both are geared towards client-heavy data fetching solutions, both have some support for NextJS server components, but there are a few differences. + +Apollo GraphQL has a NextJS experimental package that supports RSC: +https://github.com/apollographql/apollo-client-nextjs + +Urql on the other hand has no experimental features and basically lets you create a client and use it server-side with no need to use react hooks or client components with state. + +Urql is not as minimal as "graphql-request", but the idea of "exchanges" (middlewares) was appealing, it has APQ exchange and it has debugging tools and history if we ever need it. + +On the second note, NextJS Caching is really useful, especially on Vercel where you can track it's usage on the platform and invalidate it natively with revalidateTag, but having to design a solution to use Next Cache without fetch is tricky, since at the time of writing Next Cache without fetch is only available as an experimental API (unstable_cache), it's better to adopt a solution that can use fetch under the hood natively. + +## Decision + +1. Adopt Urql as replacement for graphql-request. +2. Enable APQ by default. + +## Consequences + +1. Most of the API changes are minor, but code has to be adjusted to: + +- use new "query" method instead of "request" +- use new "data" property on the response as opposed to getting the response shape directly +- use new OperationOptions as third argument to to pass fetchOptions to the fetch directly, this let you pass revalidate time and/or tags for NextJS Data Cache. + +2. All request are now cached indefinitely by default (NextJS's fetch has default caching unless opted out with cache: no-store, or revalidate) +3. Along with the decision to adopt Urql, we enable APQ by default via persistedExchange, which can help with request size and caching on the edge in Contentful. + +Overall benefits are evident, but there should be extra care now when writing new GraphQL requests, as they are going to be cached indefinitely even for dynamic pages due to the Next Cache. diff --git a/gql/graphql-cache.d.ts b/gql/graphql-cache.d.ts index 2cbca0e..437f787 100644 --- a/gql/graphql-cache.d.ts +++ b/gql/graphql-cache.d.ts @@ -8,7 +8,7 @@ declare module 'gql.tada' { TadaDocumentNode<{ navigationMenuCollection: { [$tada.fragmentRefs]: { NavigationFields: "NavigationMenuCollection"; }; } | null; }, { preview?: boolean | null | undefined; locale?: string | null | undefined; }, void>; "\n query PageSlugQuery($slug: String, $locale: String, $preview: Boolean) {\n pageCollection(\n locale: $locale\n preview: $preview\n limit: 1\n where: { slug: $slug }\n ) {\n items {\n slug\n }\n }\n }\n ": TadaDocumentNode<{ pageCollection: { items: ({ slug: string | null; } | null)[]; } | null; }, { preview?: boolean | null | undefined; locale?: string | null | undefined; slug?: string | null | undefined; }, void>; - "\n query PageQuery($slug: String, $locale: String, $preview: Boolean) {\n pageCollection(\n locale: $locale\n preview: $preview\n limit: 1\n where: { slug: $slug }\n ) {\n items {\n topSectionCollection(limit: 10) {\n items {\n ...ComponentHeroBannerFields\n ...ComponentDuplexFields\n }\n }\n }\n }\n }\n ": + "\n query PageQuery($slug: String, $locale: String, $preview: Boolean) {\n pageCollection(\n locale: $locale\n preview: $preview\n limit: 1\n where: { slug: $slug }\n ) {\n items {\n topSectionCollection(limit: 10) {\n items {\n ...ComponentHeroBannerFields\n ...ComponentDuplexFields\n }\n }\n }\n }\n }\n ": TadaDocumentNode<{ pageCollection: { items: ({ topSectionCollection: { items: ({ __typename?: "Accordion" | undefined; } | { __typename?: "ComponentCta" | undefined; } | { [$tada.fragmentRefs]: { ComponentDuplexFields: "ComponentDuplex"; }; __typename?: "ComponentDuplex" | undefined; } | { __typename?: "ComponentForm" | undefined; } | { [$tada.fragmentRefs]: { ComponentHeroBannerFields: "ComponentHeroBanner"; }; __typename?: "ComponentHeroBanner" | undefined; } | { __typename?: "ComponentInfoBlock" | undefined; } | { __typename?: "ComponentQuote" | undefined; } | { __typename?: "ComponentTextBlock" | undefined; } | null)[]; } | null; } | null)[]; } | null; }, { preview?: boolean | null | undefined; locale?: string | null | undefined; slug?: string | null | undefined; }, void>; "\n query PageSlugs($locale: String) {\n # Fetch 50 pages. Ideally we would fetch a good sample of most popular pages for pre-rendering,\n # but for the sake of this example we'll just fetch the first 50.\n pageCollection(locale: $locale, limit: 50) {\n items {\n slug\n }\n }\n }\n ": TadaDocumentNode<{ pageCollection: { items: ({ slug: string | null; } | null)[]; } | null; }, { locale?: string | null | undefined; }, void>; @@ -16,6 +16,8 @@ declare module 'gql.tada' { TadaDocumentNode<{ description: string | null; height: number | null; width: number | null; url: string | null; title: string | null; contentType: string | null; sys: { id: string; }; __typename: "Asset"; }, {}, { fragment: "AssetFields"; on: "Asset"; masked: true; }>; "\n fragment ComponentDuplexFields on ComponentDuplex {\n __typename\n sys {\n id\n }\n headline\n bodyText {\n json\n }\n ctaText\n targetPage {\n ...PageLinkFields\n }\n image {\n ...AssetFields\n }\n imageStyle\n colorPalette\n containerLayout\n }\n ": TadaDocumentNode<{ containerLayout: boolean | null; colorPalette: string | null; imageStyle: boolean | null; image: { [$tada.fragmentRefs]: { AssetFields: "Asset"; }; } | null; targetPage: { [$tada.fragmentRefs]: { PageLinkFields: "Page"; }; __typename?: "Page" | undefined; } | null; ctaText: string | null; bodyText: { json: unknown; } | null; headline: string | null; sys: { id: string; }; __typename: "ComponentDuplex"; }, {}, { fragment: "ComponentDuplexFields"; on: "ComponentDuplex"; masked: true; }>; + "\n fragment ComponentFormFields on ComponentForm {\n __typename\n sys {\n id\n }\n headline\n form\n }\n": + TadaDocumentNode<{ form: string | null; headline: string | null; sys: { id: string; }; __typename: "ComponentForm"; }, {}, { fragment: "ComponentFormFields"; on: "ComponentForm"; masked: true; }>; "\n fragment ComponentHeroBannerFields on ComponentHeroBanner {\n __typename\n sys {\n id\n }\n headline\n bodyText {\n json\n links {\n assets {\n block {\n ...AssetFields\n }\n }\n }\n }\n ctaText\n targetPage {\n ...PageLinkFields\n }\n image {\n ...AssetFields\n }\n imageStyle\n heroSize\n colorPalette\n }\n ": TadaDocumentNode<{ colorPalette: string | null; heroSize: boolean | null; imageStyle: boolean | null; image: { [$tada.fragmentRefs]: { AssetFields: "Asset"; }; } | null; targetPage: { [$tada.fragmentRefs]: { PageLinkFields: "Page"; }; __typename?: "Page" | undefined; } | null; ctaText: string | null; bodyText: { links: { assets: { block: ({ [$tada.fragmentRefs]: { AssetFields: "Asset"; }; } | null)[]; }; }; json: unknown; } | null; headline: string | null; sys: { id: string; }; __typename: "ComponentHeroBanner"; }, {}, { fragment: "ComponentHeroBannerFields"; on: "ComponentHeroBanner"; masked: true; }>; "\n fragment MenuGroupFields on MenuGroupFeaturedPagesCollection {\n items {\n ...PageLinkFields\n }\n }\n ": diff --git a/gql/graphql-env.d.ts b/gql/graphql-env.d.ts index 6c9fdda..383608b 100644 --- a/gql/graphql-env.d.ts +++ b/gql/graphql-env.d.ts @@ -14,323 +14,323 @@ export type introspection = { mutation: never; subscription: never; types: { - 'Accordion': { kind: 'OBJECT'; name: 'Accordion'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'expandType': { name: 'expandType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'heading': { name: 'heading'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'itemsCollection': { name: 'itemsCollection'; type: { kind: 'OBJECT'; name: 'AccordionItemsCollection'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'AccordionLinkingCollections'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'AccordionCollection': { kind: 'OBJECT'; name: 'AccordionCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Accordion'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'AccordionFilter': { kind: 'INPUT_OBJECT'; name: 'AccordionFilter'; inputFields: [{ name: 'items'; type: { kind: 'INPUT_OBJECT'; name: 'cfAccordionItemNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heading'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'expandType_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'expandType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'expandType_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'expandType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'expandType_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'expandType_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'expandType_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'itemsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccordionFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccordionFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'AccordionItem': { kind: 'OBJECT'; name: 'AccordionItem'; fields: { 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'AccordionItemBody'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'heading': { name: 'heading'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'AccordionItemLinkingCollections'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'AccordionItemBody': { kind: 'OBJECT'; name: 'AccordionItemBody'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyLinks'; ofType: null; }; } }; }; }; - 'AccordionItemBodyAssets': { kind: 'OBJECT'; name: 'AccordionItemBodyAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'AccordionItemBodyEntries': { kind: 'OBJECT'; name: 'AccordionItemBodyEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'AccordionItemBodyLinks': { kind: 'OBJECT'; name: 'AccordionItemBodyLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyResources'; ofType: null; }; } }; }; }; - 'AccordionItemBodyResources': { kind: 'OBJECT'; name: 'AccordionItemBodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesInline'; ofType: null; }; }; }; } }; }; }; - 'AccordionItemBodyResourcesBlock': { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'AccordionItemBodyResourcesHyperlink': { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'AccordionItemBodyResourcesInline': { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'AccordionItemCollection': { kind: 'OBJECT'; name: 'AccordionItemCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItem'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'AccordionItemFilter': { kind: 'INPUT_OBJECT'; name: 'AccordionItemFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heading'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccordionItemFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccordionItemFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'AccordionItemLinkingCollections': { kind: 'OBJECT'; name: 'AccordionItemLinkingCollections'; fields: { 'accordionCollection': { name: 'accordionCollection'; type: { kind: 'OBJECT'; name: 'AccordionCollection'; ofType: null; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; - 'AccordionItemLinkingCollectionsAccordionCollectionOrder': { name: 'AccordionItemLinkingCollectionsAccordionCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'heading_ASC' | 'heading_DESC' | 'expandType_ASC' | 'expandType_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'AccordionItemOrder': { name: 'AccordionItemOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'heading_ASC' | 'heading_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'AccordionItemsCollection': { kind: 'OBJECT'; name: 'AccordionItemsCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItem'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'AccordionItemsCollectionOrder': { name: 'AccordionItemsCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'heading_ASC' | 'heading_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'AccordionLinkingCollections': { kind: 'OBJECT'; name: 'AccordionLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'AccordionLinkingCollectionsPageCollectionOrder': { name: 'AccordionLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'AccordionOrder': { name: 'AccordionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'heading_ASC' | 'heading_DESC' | 'expandType_ASC' | 'expandType_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'Asset': { kind: 'OBJECT'; name: 'Asset'; fields: { 'contentType': { name: 'contentType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'fileName': { name: 'fileName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'AssetLinkingCollections'; ofType: null; } }; 'size': { name: 'size'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'width': { name: 'width'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'AssetCollection': { kind: 'OBJECT'; name: 'AssetCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'AssetFilter': { kind: 'INPUT_OBJECT'; name: 'AssetFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'url_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'url_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'size_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'size_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'size_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'contentType_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'contentType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contentType_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contentType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'contentType_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'contentType_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contentType_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'fileName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'fileName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'fileName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'width_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'width'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'width_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'width_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'height_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'height_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AssetFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AssetFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'AssetLinkingCollections': { kind: 'OBJECT'; name: 'AssetLinkingCollections'; fields: { 'componentDuplexCollection': { name: 'componentDuplexCollection'; type: { kind: 'OBJECT'; name: 'ComponentDuplexCollection'; ofType: null; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; ofType: null; } }; 'componentInfoBlockCollection': { name: 'componentInfoBlockCollection'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockCollection'; ofType: null; } }; 'componentQuoteCollection': { name: 'componentQuoteCollection'; type: { kind: 'OBJECT'; name: 'ComponentQuoteCollection'; ofType: null; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'seoCollection': { name: 'seoCollection'; type: { kind: 'OBJECT'; name: 'SeoCollection'; ofType: null; } }; 'topicBusinessInfoCollection': { name: 'topicBusinessInfoCollection'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoCollection'; ofType: null; } }; 'topicPersonCollection': { name: 'topicPersonCollection'; type: { kind: 'OBJECT'; name: 'TopicPersonCollection'; ofType: null; } }; 'topicProductCollection': { name: 'topicProductCollection'; type: { kind: 'OBJECT'; name: 'TopicProductCollection'; ofType: null; } }; }; }; - 'AssetOrder': { name: 'AssetOrder'; enumValues: 'url_ASC' | 'url_DESC' | 'size_ASC' | 'size_DESC' | 'contentType_ASC' | 'contentType_DESC' | 'fileName_ASC' | 'fileName_DESC' | 'width_ASC' | 'width_DESC' | 'height_ASC' | 'height_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'assetCollection': { name: 'assetCollection'; type: { kind: 'OBJECT'; name: 'AssetCollection'; ofType: null; } }; 'editorTest': { name: 'editorTest'; type: { kind: 'OBJECT'; name: 'EditorTest'; ofType: null; } }; 'editorTestCollection': { name: 'editorTestCollection'; type: { kind: 'OBJECT'; name: 'EditorTestCollection'; ofType: null; } }; 'accordionItem': { name: 'accordionItem'; type: { kind: 'OBJECT'; name: 'AccordionItem'; ofType: null; } }; 'accordionItemCollection': { name: 'accordionItemCollection'; type: { kind: 'OBJECT'; name: 'AccordionItemCollection'; ofType: null; } }; 'accordion': { name: 'accordion'; type: { kind: 'OBJECT'; name: 'Accordion'; ofType: null; } }; 'accordionCollection': { name: 'accordionCollection'; type: { kind: 'OBJECT'; name: 'AccordionCollection'; ofType: null; } }; 'page': { name: 'page'; type: { kind: 'OBJECT'; name: 'Page'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; 'ntExperience': { name: 'ntExperience'; type: { kind: 'OBJECT'; name: 'NtExperience'; ofType: null; } }; 'ntExperienceCollection': { name: 'ntExperienceCollection'; type: { kind: 'OBJECT'; name: 'NtExperienceCollection'; ofType: null; } }; 'topicPerson': { name: 'topicPerson'; type: { kind: 'OBJECT'; name: 'TopicPerson'; ofType: null; } }; 'topicPersonCollection': { name: 'topicPersonCollection'; type: { kind: 'OBJECT'; name: 'TopicPersonCollection'; ofType: null; } }; 'componentForm': { name: 'componentForm'; type: { kind: 'OBJECT'; name: 'ComponentForm'; ofType: null; } }; 'componentFormCollection': { name: 'componentFormCollection'; type: { kind: 'OBJECT'; name: 'ComponentFormCollection'; ofType: null; } }; 'componentDuplex': { name: 'componentDuplex'; type: { kind: 'OBJECT'; name: 'ComponentDuplex'; ofType: null; } }; 'componentDuplexCollection': { name: 'componentDuplexCollection'; type: { kind: 'OBJECT'; name: 'ComponentDuplexCollection'; ofType: null; } }; 'ntAudience': { name: 'ntAudience'; type: { kind: 'OBJECT'; name: 'NtAudience'; ofType: null; } }; 'ntAudienceCollection': { name: 'ntAudienceCollection'; type: { kind: 'OBJECT'; name: 'NtAudienceCollection'; ofType: null; } }; 'topicBusinessInfo': { name: 'topicBusinessInfo'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfo'; ofType: null; } }; 'topicBusinessInfoCollection': { name: 'topicBusinessInfoCollection'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoCollection'; ofType: null; } }; 'footerMenu': { name: 'footerMenu'; type: { kind: 'OBJECT'; name: 'FooterMenu'; ofType: null; } }; 'footerMenuCollection': { name: 'footerMenuCollection'; type: { kind: 'OBJECT'; name: 'FooterMenuCollection'; ofType: null; } }; 'navigationMenu': { name: 'navigationMenu'; type: { kind: 'OBJECT'; name: 'NavigationMenu'; ofType: null; } }; 'navigationMenuCollection': { name: 'navigationMenuCollection'; type: { kind: 'OBJECT'; name: 'NavigationMenuCollection'; ofType: null; } }; 'menuGroup': { name: 'menuGroup'; type: { kind: 'OBJECT'; name: 'MenuGroup'; ofType: null; } }; 'menuGroupCollection': { name: 'menuGroupCollection'; type: { kind: 'OBJECT'; name: 'MenuGroupCollection'; ofType: null; } }; 'topicProduct': { name: 'topicProduct'; type: { kind: 'OBJECT'; name: 'TopicProduct'; ofType: null; } }; 'topicProductCollection': { name: 'topicProductCollection'; type: { kind: 'OBJECT'; name: 'TopicProductCollection'; ofType: null; } }; 'topicProductFeature': { name: 'topicProductFeature'; type: { kind: 'OBJECT'; name: 'TopicProductFeature'; ofType: null; } }; 'topicProductFeatureCollection': { name: 'topicProductFeatureCollection'; type: { kind: 'OBJECT'; name: 'TopicProductFeatureCollection'; ofType: null; } }; 'componentQuote': { name: 'componentQuote'; type: { kind: 'OBJECT'; name: 'ComponentQuote'; ofType: null; } }; 'componentQuoteCollection': { name: 'componentQuoteCollection'; type: { kind: 'OBJECT'; name: 'ComponentQuoteCollection'; ofType: null; } }; 'seo': { name: 'seo'; type: { kind: 'OBJECT'; name: 'Seo'; ofType: null; } }; 'seoCollection': { name: 'seoCollection'; type: { kind: 'OBJECT'; name: 'SeoCollection'; ofType: null; } }; 'componentTextBlock': { name: 'componentTextBlock'; type: { kind: 'OBJECT'; name: 'ComponentTextBlock'; ofType: null; } }; 'componentTextBlockCollection': { name: 'componentTextBlockCollection'; type: { kind: 'OBJECT'; name: 'ComponentTextBlockCollection'; ofType: null; } }; 'componentInfoBlock': { name: 'componentInfoBlock'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlock'; ofType: null; } }; 'componentInfoBlockCollection': { name: 'componentInfoBlockCollection'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockCollection'; ofType: null; } }; 'componentProductTable': { name: 'componentProductTable'; type: { kind: 'OBJECT'; name: 'ComponentProductTable'; ofType: null; } }; 'componentProductTableCollection': { name: 'componentProductTableCollection'; type: { kind: 'OBJECT'; name: 'ComponentProductTableCollection'; ofType: null; } }; 'componentCta': { name: 'componentCta'; type: { kind: 'OBJECT'; name: 'ComponentCta'; ofType: null; } }; 'componentCtaCollection': { name: 'componentCtaCollection'; type: { kind: 'OBJECT'; name: 'ComponentCtaCollection'; ofType: null; } }; 'componentHeroBanner': { name: 'componentHeroBanner'; type: { kind: 'OBJECT'; name: 'ComponentHeroBanner'; ofType: null; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; ofType: null; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; '_node': { name: '_node'; type: { kind: 'INTERFACE'; name: '_Node'; ofType: null; } }; }; }; + 'String': unknown; 'Boolean': unknown; - 'ComponentCta': { kind: 'OBJECT'; name: 'ComponentCta'; fields: { 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'ctaText': { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentCtaLinkingCollections'; ofType: null; } }; 'subline': { name: 'subline'; type: { kind: 'OBJECT'; name: 'ComponentCtaSubline'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'targetPage': { name: 'targetPage'; type: { kind: 'UNION'; name: 'ComponentCtaTargetPage'; ofType: null; } }; 'urlParameters': { name: 'urlParameters'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'ComponentCtaCollection': { kind: 'OBJECT'; name: 'ComponentCtaCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCta'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'ComponentCtaFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentCtaFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'subline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'targetPage_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'urlParameters_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'urlParameters'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'urlParameters_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'urlParameters_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'urlParameters_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'urlParameters_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'urlParameters_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentCtaFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentCtaFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'Int': unknown; + 'ID': unknown; + 'Asset': { kind: 'OBJECT'; name: 'Asset'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contentType': { name: 'contentType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'fileName': { name: 'fileName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'size': { name: 'size'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'width': { name: 'width'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'AssetLinkingCollections'; ofType: null; } }; }; }; + 'Sys': { kind: 'OBJECT'; name: 'Sys'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'spaceId': { name: 'spaceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'environmentId': { name: 'environmentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'publishedAt': { name: 'publishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'firstPublishedAt': { name: 'firstPublishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'publishedVersion': { name: 'publishedVersion'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'DateTime': unknown; + 'ContentfulMetadata': { kind: 'OBJECT'; name: 'ContentfulMetadata'; fields: { 'tags': { name: 'tags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulTag'; ofType: null; }; }; } }; }; }; + 'ContentfulTag': { kind: 'OBJECT'; name: 'ContentfulTag'; fields: { 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'ImageTransformOptions': { kind: 'INPUT_OBJECT'; name: 'ImageTransformOptions'; inputFields: [{ name: 'width'; type: { kind: 'SCALAR'; name: 'Dimension'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'Dimension'; ofType: null; }; defaultValue: null }, { name: 'quality'; type: { kind: 'SCALAR'; name: 'Quality'; ofType: null; }; defaultValue: null }, { name: 'cornerRadius'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'resizeStrategy'; type: { kind: 'ENUM'; name: 'ImageResizeStrategy'; ofType: null; }; defaultValue: null }, { name: 'resizeFocus'; type: { kind: 'ENUM'; name: 'ImageResizeFocus'; ofType: null; }; defaultValue: null }, { name: 'backgroundColor'; type: { kind: 'SCALAR'; name: 'HexColor'; ofType: null; }; defaultValue: null }, { name: 'format'; type: { kind: 'ENUM'; name: 'ImageFormat'; ofType: null; }; defaultValue: null }]; }; + 'Dimension': unknown; + 'Quality': unknown; + 'ImageResizeStrategy': { kind: 'ENUM'; name: 'ImageResizeStrategy'; type: 'FIT' | 'PAD' | 'FILL' | 'SCALE' | 'CROP' | 'THUMB'; }; + 'ImageResizeFocus': { kind: 'ENUM'; name: 'ImageResizeFocus'; type: 'CENTER' | 'TOP' | 'TOP_RIGHT' | 'RIGHT' | 'BOTTOM_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'LEFT' | 'TOP_LEFT' | 'FACE' | 'FACES'; }; + 'HexColor': unknown; + 'ImageFormat': { kind: 'ENUM'; name: 'ImageFormat'; type: 'JPG' | 'JPG_PROGRESSIVE' | 'PNG' | 'PNG8' | 'WEBP' | 'AVIF'; }; + 'AssetLinkingCollections': { kind: 'OBJECT'; name: 'AssetLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'topicPersonCollection': { name: 'topicPersonCollection'; type: { kind: 'OBJECT'; name: 'TopicPersonCollection'; ofType: null; } }; 'componentDuplexCollection': { name: 'componentDuplexCollection'; type: { kind: 'OBJECT'; name: 'ComponentDuplexCollection'; ofType: null; } }; 'topicBusinessInfoCollection': { name: 'topicBusinessInfoCollection'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoCollection'; ofType: null; } }; 'topicProductCollection': { name: 'topicProductCollection'; type: { kind: 'OBJECT'; name: 'TopicProductCollection'; ofType: null; } }; 'componentQuoteCollection': { name: 'componentQuoteCollection'; type: { kind: 'OBJECT'; name: 'ComponentQuoteCollection'; ofType: null; } }; 'seoCollection': { name: 'seoCollection'; type: { kind: 'OBJECT'; name: 'SeoCollection'; ofType: null; } }; 'componentInfoBlockCollection': { name: 'componentInfoBlockCollection'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockCollection'; ofType: null; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; ofType: null; } }; }; }; + 'EntryCollection': { kind: 'OBJECT'; name: 'EntryCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'Entry': { kind: 'INTERFACE'; name: 'Entry'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; }; possibleTypes: 'TopicPerson' | 'ComponentDuplex' | 'Page' | 'MenuGroup' | 'FooterMenu' | 'NavigationMenu' | 'ComponentCta' | 'ComponentHeroBanner' | 'Seo' | 'Accordion' | 'AccordionItem' | 'ComponentForm' | 'ComponentInfoBlock' | 'ComponentQuote' | 'ComponentTextBlock' | 'ComponentProductTable' | 'TopicProduct' | 'TopicProductFeature' | 'TopicBusinessInfo' | 'EditorTest' | 'NtExperience' | 'NtAudience'; }; + 'TopicPersonCollection': { kind: 'OBJECT'; name: 'TopicPersonCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPerson'; ofType: null; }; }; } }; }; }; + 'TopicPerson': { kind: 'OBJECT'; name: 'TopicPerson'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'TopicPersonLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'bio': { name: 'bio'; type: { kind: 'OBJECT'; name: 'TopicPersonBio'; ofType: null; } }; 'avatar': { name: 'avatar'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'website': { name: 'website'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'location': { name: 'location'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'cardStyle': { name: 'cardStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; }; + 'TopicPersonLinkingCollections': { kind: 'OBJECT'; name: 'TopicPersonLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; + 'TopicPersonBio': { kind: 'OBJECT'; name: 'TopicPersonBio'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioLinks'; ofType: null; }; } }; }; }; + 'JSON': unknown; + 'TopicPersonBioLinks': { kind: 'OBJECT'; name: 'TopicPersonBioLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioResources'; ofType: null; }; } }; }; }; + 'TopicPersonBioEntries': { kind: 'OBJECT'; name: 'TopicPersonBioEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'TopicPersonBioAssets': { kind: 'OBJECT'; name: 'TopicPersonBioAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'TopicPersonBioResources': { kind: 'OBJECT'; name: 'TopicPersonBioResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; + 'TopicPersonBioResourcesBlock': { kind: 'OBJECT'; name: 'TopicPersonBioResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'ResourceLink': { kind: 'INTERFACE'; name: 'ResourceLink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; possibleTypes: 'TopicPersonBioResourcesBlock' | 'TopicPersonBioResourcesInline' | 'TopicPersonBioResourcesHyperlink' | 'ComponentCtaSublineResourcesBlock' | 'ComponentCtaSublineResourcesInline' | 'ComponentCtaSublineResourcesHyperlink' | 'ComponentHeroBannerBodyTextResourcesBlock' | 'ComponentHeroBannerBodyTextResourcesInline' | 'ComponentHeroBannerBodyTextResourcesHyperlink' | 'AccordionItemBodyResourcesBlock' | 'AccordionItemBodyResourcesInline' | 'AccordionItemBodyResourcesHyperlink' | 'ComponentInfoBlockBlock1BodyResourcesBlock' | 'ComponentInfoBlockBlock1BodyResourcesInline' | 'ComponentInfoBlockBlock1BodyResourcesHyperlink' | 'ComponentInfoBlockBlock2BodyResourcesBlock' | 'ComponentInfoBlockBlock2BodyResourcesInline' | 'ComponentInfoBlockBlock2BodyResourcesHyperlink' | 'ComponentInfoBlockBlock3BodyResourcesBlock' | 'ComponentInfoBlockBlock3BodyResourcesInline' | 'ComponentInfoBlockBlock3BodyResourcesHyperlink' | 'ComponentQuoteQuoteResourcesBlock' | 'ComponentQuoteQuoteResourcesInline' | 'ComponentQuoteQuoteResourcesHyperlink' | 'ComponentTextBlockBodyResourcesBlock' | 'ComponentTextBlockBodyResourcesInline' | 'ComponentTextBlockBodyResourcesHyperlink' | 'TopicProductDescriptionResourcesBlock' | 'TopicProductDescriptionResourcesInline' | 'TopicProductDescriptionResourcesHyperlink' | 'TopicProductFeatureShortDescriptionResourcesBlock' | 'TopicProductFeatureShortDescriptionResourcesInline' | 'TopicProductFeatureShortDescriptionResourcesHyperlink' | 'TopicProductFeatureLongDescriptionResourcesBlock' | 'TopicProductFeatureLongDescriptionResourcesInline' | 'TopicProductFeatureLongDescriptionResourcesHyperlink' | 'TopicBusinessInfoBodyResourcesBlock' | 'TopicBusinessInfoBodyResourcesInline' | 'TopicBusinessInfoBodyResourcesHyperlink' | 'ComponentDuplexBodyTextResourcesBlock' | 'ComponentDuplexBodyTextResourcesInline' | 'ComponentDuplexBodyTextResourcesHyperlink'; }; + 'ResourceSys': { kind: 'OBJECT'; name: 'ResourceSys'; fields: { 'urn': { name: 'urn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'linkType': { name: 'linkType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'TopicPersonBioResourcesInline': { kind: 'OBJECT'; name: 'TopicPersonBioResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'TopicPersonBioResourcesHyperlink': { kind: 'OBJECT'; name: 'TopicPersonBioResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'ComponentDuplexCollection': { kind: 'OBJECT'; name: 'ComponentDuplexCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplex'; ofType: null; }; }; } }; }; }; + 'ComponentDuplex': { kind: 'OBJECT'; name: 'ComponentDuplex'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentDuplexLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'containerLayout': { name: 'containerLayout'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'bodyText': { name: 'bodyText'; type: { kind: 'OBJECT'; name: 'ComponentDuplexBodyText'; ofType: null; } }; 'ctaText': { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'targetPage': { name: 'targetPage'; type: { kind: 'UNION'; name: 'ComponentDuplexTargetPage'; ofType: null; } }; 'image': { name: 'image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'imageStyle': { name: 'imageStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'ComponentDuplexLinkingCollections': { kind: 'OBJECT'; name: 'ComponentDuplexLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; + 'PageCollection': { kind: 'OBJECT'; name: 'PageCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Page'; ofType: null; }; }; } }; }; }; + 'Page': { kind: 'OBJECT'; name: 'Page'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'PageLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'pageName': { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'slug': { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'seo': { name: 'seo'; type: { kind: 'OBJECT'; name: 'Seo'; ofType: null; } }; 'topSectionCollection': { name: 'topSectionCollection'; type: { kind: 'OBJECT'; name: 'PageTopSectionCollection'; ofType: null; } }; 'pageContent': { name: 'pageContent'; type: { kind: 'UNION'; name: 'PagePageContent'; ofType: null; } }; 'extraSectionCollection': { name: 'extraSectionCollection'; type: { kind: 'OBJECT'; name: 'PageExtraSectionCollection'; ofType: null; } }; }; }; + 'PageLinkingCollections': { kind: 'OBJECT'; name: 'PageLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'componentDuplexCollection': { name: 'componentDuplexCollection'; type: { kind: 'OBJECT'; name: 'ComponentDuplexCollection'; ofType: null; } }; 'menuGroupCollection': { name: 'menuGroupCollection'; type: { kind: 'OBJECT'; name: 'MenuGroupCollection'; ofType: null; } }; 'componentCtaCollection': { name: 'componentCtaCollection'; type: { kind: 'OBJECT'; name: 'ComponentCtaCollection'; ofType: null; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; ofType: null; } }; }; }; + 'PageLinkingCollectionsComponentDuplexCollectionOrder': { kind: 'ENUM'; name: 'PageLinkingCollectionsComponentDuplexCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'containerLayout_ASC' | 'containerLayout_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'imageStyle_ASC' | 'imageStyle_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'MenuGroupCollection': { kind: 'OBJECT'; name: 'MenuGroupCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'MenuGroup'; ofType: null; }; }; } }; }; }; + 'MenuGroup': { kind: 'OBJECT'; name: 'MenuGroup'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'MenuGroupLinkingCollections'; ofType: null; } }; 'internalTitle': { name: 'internalTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'groupName': { name: 'groupName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'groupLink': { name: 'groupLink'; type: { kind: 'UNION'; name: 'MenuGroupGroupLink'; ofType: null; } }; 'featuredPagesCollection': { name: 'featuredPagesCollection'; type: { kind: 'OBJECT'; name: 'MenuGroupFeaturedPagesCollection'; ofType: null; } }; }; }; + 'MenuGroupLinkingCollections': { kind: 'OBJECT'; name: 'MenuGroupLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'footerMenuCollection': { name: 'footerMenuCollection'; type: { kind: 'OBJECT'; name: 'FooterMenuCollection'; ofType: null; } }; 'navigationMenuCollection': { name: 'navigationMenuCollection'; type: { kind: 'OBJECT'; name: 'NavigationMenuCollection'; ofType: null; } }; }; }; + 'FooterMenuCollection': { kind: 'OBJECT'; name: 'FooterMenuCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'FooterMenu'; ofType: null; }; }; } }; }; }; + 'FooterMenu': { kind: 'OBJECT'; name: 'FooterMenu'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'FooterMenuLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'menuItemsCollection': { name: 'menuItemsCollection'; type: { kind: 'OBJECT'; name: 'FooterMenuMenuItemsCollection'; ofType: null; } }; 'legalLinks': { name: 'legalLinks'; type: { kind: 'OBJECT'; name: 'MenuGroup'; ofType: null; } }; 'twitterLink': { name: 'twitterLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'facebookLink': { name: 'facebookLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedinLink': { name: 'linkedinLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'instagramLink': { name: 'instagramLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'FooterMenuLinkingCollections': { kind: 'OBJECT'; name: 'FooterMenuLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; + 'FooterMenuMenuItemsCollection': { kind: 'OBJECT'; name: 'FooterMenuMenuItemsCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'MenuGroup'; ofType: null; }; }; } }; }; }; + 'MenuGroupFilter': { kind: 'INPUT_OBJECT'; name: 'MenuGroupFilter'; inputFields: [{ name: 'groupLink'; type: { kind: 'INPUT_OBJECT'; name: 'cfgroupLinkMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'featuredPages'; type: { kind: 'INPUT_OBJECT'; name: 'cffeaturedPagesMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'groupName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'groupName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'groupName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'featuredPagesCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'cfgroupLinkMultiTypeNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfgroupLinkMultiTypeNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seo_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'topSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageContent_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'extraSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfgroupLinkMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfgroupLinkMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'SysFilter': { kind: 'INPUT_OBJECT'; name: 'SysFilter'; inputFields: [{ name: 'id_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'publishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_not'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'publishedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'publishedAt_gt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_gte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_lt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_lte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_not'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'firstPublishedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'firstPublishedAt_gt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_gte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_lt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_lte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_not'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'publishedVersion_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'publishedVersion_gt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_gte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_lt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_lte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }]; }; + 'Float': unknown; + 'ContentfulMetadataFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; inputFields: [{ name: 'tags_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'tags'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataTagsFilter'; ofType: null; }; defaultValue: null }]; }; + 'ContentfulMetadataTagsFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataTagsFilter'; inputFields: [{ name: 'id_contains_all'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_contains_some'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_contains_none'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; + 'cffeaturedPagesMultiTypeNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cffeaturedPagesMultiTypeNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seo_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'topSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageContent_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'extraSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cffeaturedPagesMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cffeaturedPagesMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'FooterMenuMenuItemsCollectionOrder': { kind: 'ENUM'; name: 'FooterMenuMenuItemsCollectionOrder'; type: 'internalTitle_ASC' | 'internalTitle_DESC' | 'groupName_ASC' | 'groupName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'MenuGroupLinkingCollectionsFooterMenuCollectionOrder': { kind: 'ENUM'; name: 'MenuGroupLinkingCollectionsFooterMenuCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'twitterLink_ASC' | 'twitterLink_DESC' | 'facebookLink_ASC' | 'facebookLink_DESC' | 'linkedinLink_ASC' | 'linkedinLink_DESC' | 'instagramLink_ASC' | 'instagramLink_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'NavigationMenuCollection': { kind: 'OBJECT'; name: 'NavigationMenuCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'NavigationMenu'; ofType: null; }; }; } }; }; }; + 'NavigationMenu': { kind: 'OBJECT'; name: 'NavigationMenu'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'NavigationMenuLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'menuItemsCollection': { name: 'menuItemsCollection'; type: { kind: 'OBJECT'; name: 'NavigationMenuMenuItemsCollection'; ofType: null; } }; }; }; + 'NavigationMenuLinkingCollections': { kind: 'OBJECT'; name: 'NavigationMenuLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; + 'NavigationMenuMenuItemsCollection': { kind: 'OBJECT'; name: 'NavigationMenuMenuItemsCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'MenuGroup'; ofType: null; }; }; } }; }; }; + 'NavigationMenuMenuItemsCollectionOrder': { kind: 'ENUM'; name: 'NavigationMenuMenuItemsCollectionOrder'; type: 'internalTitle_ASC' | 'internalTitle_DESC' | 'groupName_ASC' | 'groupName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'MenuGroupLinkingCollectionsNavigationMenuCollectionOrder': { kind: 'ENUM'; name: 'MenuGroupLinkingCollectionsNavigationMenuCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'MenuGroupGroupLink': { kind: 'UNION'; name: 'MenuGroupGroupLink'; fields: {}; possibleTypes: 'Page'; }; + 'MenuGroupGroupLinkFilter': { kind: 'INPUT_OBJECT'; name: 'MenuGroupGroupLinkFilter'; inputFields: [{ name: 'topSection'; type: { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'extraSection'; type: { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seo_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'topSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageContent_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'extraSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupGroupLinkFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupGroupLinkFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'cftopSectionMultiTypeNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'cfextraSectionMultiTypeNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'MenuGroupFeaturedPagesCollection': { kind: 'OBJECT'; name: 'MenuGroupFeaturedPagesCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'UNION'; name: 'MenuGroupFeaturedPagesItem'; ofType: null; }; }; } }; }; }; + 'MenuGroupFeaturedPagesItem': { kind: 'UNION'; name: 'MenuGroupFeaturedPagesItem'; fields: {}; possibleTypes: 'Page'; }; + 'MenuGroupFeaturedPagesFilter': { kind: 'INPUT_OBJECT'; name: 'MenuGroupFeaturedPagesFilter'; inputFields: [{ name: 'topSection'; type: { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'extraSection'; type: { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seo_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'topSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageContent_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'extraSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupFeaturedPagesFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupFeaturedPagesFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'PageLinkingCollectionsMenuGroupCollectionOrder': { kind: 'ENUM'; name: 'PageLinkingCollectionsMenuGroupCollectionOrder'; type: 'internalTitle_ASC' | 'internalTitle_DESC' | 'groupName_ASC' | 'groupName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentCtaCollection': { kind: 'OBJECT'; name: 'ComponentCtaCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCta'; ofType: null; }; }; } }; }; }; + 'ComponentCta': { kind: 'OBJECT'; name: 'ComponentCta'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentCtaLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'subline': { name: 'subline'; type: { kind: 'OBJECT'; name: 'ComponentCtaSubline'; ofType: null; } }; 'ctaText': { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'targetPage': { name: 'targetPage'; type: { kind: 'UNION'; name: 'ComponentCtaTargetPage'; ofType: null; } }; 'urlParameters': { name: 'urlParameters'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'ComponentCtaLinkingCollections': { kind: 'OBJECT'; name: 'ComponentCtaLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'ComponentCtaLinkingCollectionsPageCollectionOrder': { name: 'ComponentCtaLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentCtaOrder': { name: 'ComponentCtaOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'urlParameters_ASC' | 'urlParameters_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentCtaLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'ComponentCtaLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; 'ComponentCtaSubline': { kind: 'OBJECT'; name: 'ComponentCtaSubline'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineLinks'; ofType: null; }; } }; }; }; - 'ComponentCtaSublineAssets': { kind: 'OBJECT'; name: 'ComponentCtaSublineAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'ComponentCtaSublineEntries': { kind: 'OBJECT'; name: 'ComponentCtaSublineEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'ComponentCtaSublineLinks': { kind: 'OBJECT'; name: 'ComponentCtaSublineLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineResources'; ofType: null; }; } }; }; }; - 'ComponentCtaSublineResources': { kind: 'OBJECT'; name: 'ComponentCtaSublineResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesInline'; ofType: null; }; }; }; } }; }; }; + 'ComponentCtaSublineLinks': { kind: 'OBJECT'; name: 'ComponentCtaSublineLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineResources'; ofType: null; }; } }; }; }; + 'ComponentCtaSublineEntries': { kind: 'OBJECT'; name: 'ComponentCtaSublineEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'ComponentCtaSublineAssets': { kind: 'OBJECT'; name: 'ComponentCtaSublineAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'ComponentCtaSublineResources': { kind: 'OBJECT'; name: 'ComponentCtaSublineResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; 'ComponentCtaSublineResourcesBlock': { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentCtaSublineResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentCtaSublineResourcesInline': { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'ComponentCtaSublineResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentCtaTargetPage': { kind: 'UNION'; name: 'ComponentCtaTargetPage'; fields: {}; possibleTypes: 'Page'; }; - 'ComponentDuplex': { kind: 'OBJECT'; name: 'ComponentDuplex'; fields: { 'bodyText': { name: 'bodyText'; type: { kind: 'OBJECT'; name: 'ComponentDuplexBodyText'; ofType: null; } }; 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'containerLayout': { name: 'containerLayout'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'ctaText': { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'image': { name: 'image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'imageStyle': { name: 'imageStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentDuplexLinkingCollections'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'targetPage': { name: 'targetPage'; type: { kind: 'UNION'; name: 'ComponentDuplexTargetPage'; ofType: null; } }; }; }; - 'ComponentDuplexBodyText': { kind: 'OBJECT'; name: 'ComponentDuplexBodyText'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextLinks'; ofType: null; }; } }; }; }; - 'ComponentDuplexBodyTextAssets': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'ComponentDuplexBodyTextEntries': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'ComponentDuplexBodyTextLinks': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResources'; ofType: null; }; } }; }; }; - 'ComponentDuplexBodyTextResources': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesInline'; ofType: null; }; }; }; } }; }; }; - 'ComponentDuplexBodyTextResourcesBlock': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentDuplexBodyTextResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentDuplexBodyTextResourcesInline': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentDuplexCollection': { kind: 'OBJECT'; name: 'ComponentDuplexCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplex'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'ComponentDuplexFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentDuplexFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'containerLayout_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'containerLayout'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'containerLayout_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bodyText_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'bodyText_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bodyText_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'targetPage_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentDuplexFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentDuplexFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'ComponentDuplexLinkingCollections': { kind: 'OBJECT'; name: 'ComponentDuplexLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'ComponentDuplexLinkingCollectionsPageCollectionOrder': { name: 'ComponentDuplexLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentDuplexOrder': { name: 'ComponentDuplexOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'containerLayout_ASC' | 'containerLayout_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'imageStyle_ASC' | 'imageStyle_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentDuplexTargetPage': { kind: 'UNION'; name: 'ComponentDuplexTargetPage'; fields: {}; possibleTypes: 'Page'; }; - 'ComponentForm': { kind: 'OBJECT'; name: 'ComponentForm'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'form': { name: 'form'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internalTitle': { name: 'internalTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentFormLinkingCollections'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'ComponentFormCollection': { kind: 'OBJECT'; name: 'ComponentFormCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentForm'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'ComponentFormFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentFormFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'form_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'form'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'form_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'form_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'form_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'form_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'form_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentFormFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentFormFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'ComponentFormLinkingCollections': { kind: 'OBJECT'; name: 'ComponentFormLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'ComponentFormLinkingCollectionsPageCollectionOrder': { name: 'ComponentFormLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentFormOrder': { name: 'ComponentFormOrder'; enumValues: 'internalTitle_ASC' | 'internalTitle_DESC' | 'headline_ASC' | 'headline_DESC' | 'form_ASC' | 'form_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentHeroBanner': { kind: 'OBJECT'; name: 'ComponentHeroBanner'; fields: { 'bodyText': { name: 'bodyText'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyText'; ofType: null; } }; 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'ctaText': { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'heroSize': { name: 'heroSize'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'image': { name: 'image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'imageStyle': { name: 'imageStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerLinkingCollections'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'targetPage': { name: 'targetPage'; type: { kind: 'UNION'; name: 'ComponentHeroBannerTargetPage'; ofType: null; } }; }; }; + 'PageLinkingCollectionsComponentCtaCollectionOrder': { kind: 'ENUM'; name: 'PageLinkingCollectionsComponentCtaCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'urlParameters_ASC' | 'urlParameters_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentHeroBannerCollection': { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBanner'; ofType: null; }; }; } }; }; }; + 'ComponentHeroBanner': { kind: 'OBJECT'; name: 'ComponentHeroBanner'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'bodyText': { name: 'bodyText'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyText'; ofType: null; } }; 'ctaText': { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'targetPage': { name: 'targetPage'; type: { kind: 'UNION'; name: 'ComponentHeroBannerTargetPage'; ofType: null; } }; 'image': { name: 'image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'imageStyle': { name: 'imageStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'heroSize': { name: 'heroSize'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'ComponentHeroBannerLinkingCollections': { kind: 'OBJECT'; name: 'ComponentHeroBannerLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; + 'ComponentHeroBannerLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'ComponentHeroBannerLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; 'ComponentHeroBannerBodyText': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyText'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextLinks'; ofType: null; }; } }; }; }; - 'ComponentHeroBannerBodyTextAssets': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'ComponentHeroBannerBodyTextEntries': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'ComponentHeroBannerBodyTextLinks': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResources'; ofType: null; }; } }; }; }; - 'ComponentHeroBannerBodyTextResources': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesInline'; ofType: null; }; }; }; } }; }; }; + 'ComponentHeroBannerBodyTextLinks': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResources'; ofType: null; }; } }; }; }; + 'ComponentHeroBannerBodyTextEntries': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'ComponentHeroBannerBodyTextAssets': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'ComponentHeroBannerBodyTextResources': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; 'ComponentHeroBannerBodyTextResourcesBlock': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentHeroBannerBodyTextResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentHeroBannerBodyTextResourcesInline': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentHeroBannerCollection': { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentHeroBanner'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'ComponentHeroBannerFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentHeroBannerFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bodyText_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'bodyText_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bodyText_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'targetPage_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heroSize_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heroSize'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heroSize_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentHeroBannerFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentHeroBannerFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'ComponentHeroBannerLinkingCollections': { kind: 'OBJECT'; name: 'ComponentHeroBannerLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'ComponentHeroBannerLinkingCollectionsPageCollectionOrder': { name: 'ComponentHeroBannerLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentHeroBannerOrder': { name: 'ComponentHeroBannerOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'imageStyle_ASC' | 'imageStyle_DESC' | 'heroSize_ASC' | 'heroSize_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentHeroBannerBodyTextResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentHeroBannerTargetPage': { kind: 'UNION'; name: 'ComponentHeroBannerTargetPage'; fields: {}; possibleTypes: 'Page'; }; - 'ComponentInfoBlock': { kind: 'OBJECT'; name: 'ComponentInfoBlock'; fields: { 'block1Body': { name: 'block1Body'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1Body'; ofType: null; } }; 'block1Image': { name: 'block1Image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'block2Body': { name: 'block2Body'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2Body'; ofType: null; } }; 'block2Image': { name: 'block2Image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'block3Body': { name: 'block3Body'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3Body'; ofType: null; } }; 'block3Image': { name: 'block3Image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockLinkingCollections'; ofType: null; } }; 'subline': { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; + 'PageLinkingCollectionsComponentHeroBannerCollectionOrder': { kind: 'ENUM'; name: 'PageLinkingCollectionsComponentHeroBannerCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'imageStyle_ASC' | 'imageStyle_DESC' | 'heroSize_ASC' | 'heroSize_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'Seo': { kind: 'OBJECT'; name: 'Seo'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'SeoLinkingCollections'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'image': { name: 'image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'noIndex': { name: 'noIndex'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'noFollow': { name: 'noFollow'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; }; + 'SeoLinkingCollections': { kind: 'OBJECT'; name: 'SeoLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; + 'SeoLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'SeoLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'SeoFilter': { kind: 'INPUT_OBJECT'; name: 'SeoFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noIndex_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noIndex'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noIndex_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noFollow_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noFollow'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noFollow_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SeoFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SeoFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'PageTopSectionCollection': { kind: 'OBJECT'; name: 'PageTopSectionCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'UNION'; name: 'PageTopSectionItem'; ofType: null; }; }; } }; }; }; + 'PageTopSectionItem': { kind: 'UNION'; name: 'PageTopSectionItem'; fields: {}; possibleTypes: 'Accordion' | 'ComponentCta' | 'ComponentDuplex' | 'ComponentForm' | 'ComponentHeroBanner' | 'ComponentInfoBlock' | 'ComponentQuote' | 'ComponentTextBlock'; }; + 'Accordion': { kind: 'OBJECT'; name: 'Accordion'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'AccordionLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'heading': { name: 'heading'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'expandType': { name: 'expandType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'itemsCollection': { name: 'itemsCollection'; type: { kind: 'OBJECT'; name: 'AccordionItemsCollection'; ofType: null; } }; }; }; + 'AccordionLinkingCollections': { kind: 'OBJECT'; name: 'AccordionLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; + 'AccordionLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'AccordionLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'AccordionItemsCollection': { kind: 'OBJECT'; name: 'AccordionItemsCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItem'; ofType: null; }; }; } }; }; }; + 'AccordionItem': { kind: 'OBJECT'; name: 'AccordionItem'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'AccordionItemLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'heading': { name: 'heading'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'AccordionItemBody'; ofType: null; } }; }; }; + 'AccordionItemLinkingCollections': { kind: 'OBJECT'; name: 'AccordionItemLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'accordionCollection': { name: 'accordionCollection'; type: { kind: 'OBJECT'; name: 'AccordionCollection'; ofType: null; } }; }; }; + 'AccordionCollection': { kind: 'OBJECT'; name: 'AccordionCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Accordion'; ofType: null; }; }; } }; }; }; + 'AccordionItemLinkingCollectionsAccordionCollectionOrder': { kind: 'ENUM'; name: 'AccordionItemLinkingCollectionsAccordionCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'heading_ASC' | 'heading_DESC' | 'expandType_ASC' | 'expandType_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'AccordionItemBody': { kind: 'OBJECT'; name: 'AccordionItemBody'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyLinks'; ofType: null; }; } }; }; }; + 'AccordionItemBodyLinks': { kind: 'OBJECT'; name: 'AccordionItemBodyLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyResources'; ofType: null; }; } }; }; }; + 'AccordionItemBodyEntries': { kind: 'OBJECT'; name: 'AccordionItemBodyEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'AccordionItemBodyAssets': { kind: 'OBJECT'; name: 'AccordionItemBodyAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'AccordionItemBodyResources': { kind: 'OBJECT'; name: 'AccordionItemBodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; + 'AccordionItemBodyResourcesBlock': { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'AccordionItemBodyResourcesInline': { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'AccordionItemBodyResourcesHyperlink': { kind: 'OBJECT'; name: 'AccordionItemBodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'AccordionItemFilter': { kind: 'INPUT_OBJECT'; name: 'AccordionItemFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heading'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccordionItemFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccordionItemFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'AccordionItemsCollectionOrder': { kind: 'ENUM'; name: 'AccordionItemsCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'heading_ASC' | 'heading_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentForm': { kind: 'OBJECT'; name: 'ComponentForm'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentFormLinkingCollections'; ofType: null; } }; 'internalTitle': { name: 'internalTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'form': { name: 'form'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'ComponentFormLinkingCollections': { kind: 'OBJECT'; name: 'ComponentFormLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; + 'ComponentFormLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'ComponentFormLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentInfoBlock': { kind: 'OBJECT'; name: 'ComponentInfoBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'subline': { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'block1Image': { name: 'block1Image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'block1Body': { name: 'block1Body'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1Body'; ofType: null; } }; 'block2Image': { name: 'block2Image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'block2Body': { name: 'block2Body'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2Body'; ofType: null; } }; 'block3Image': { name: 'block3Image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'block3Body': { name: 'block3Body'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3Body'; ofType: null; } }; 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'ComponentInfoBlockLinkingCollections': { kind: 'OBJECT'; name: 'ComponentInfoBlockLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; + 'ComponentInfoBlockLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'ComponentInfoBlockLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; 'ComponentInfoBlockBlock1Body': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1Body'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyLinks'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockBlock1BodyAssets': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'ComponentInfoBlockBlock1BodyEntries': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'ComponentInfoBlockBlock1BodyLinks': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResources'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockBlock1BodyResources': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesInline'; ofType: null; }; }; }; } }; }; }; + 'ComponentInfoBlockBlock1BodyLinks': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResources'; ofType: null; }; } }; }; }; + 'ComponentInfoBlockBlock1BodyEntries': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'ComponentInfoBlockBlock1BodyAssets': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'ComponentInfoBlockBlock1BodyResources': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; 'ComponentInfoBlockBlock1BodyResourcesBlock': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockBlock1BodyResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentInfoBlockBlock1BodyResourcesInline': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'ComponentInfoBlockBlock1BodyResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentInfoBlockBlock2Body': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2Body'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyLinks'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockBlock2BodyAssets': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'ComponentInfoBlockBlock2BodyEntries': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'ComponentInfoBlockBlock2BodyLinks': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResources'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockBlock2BodyResources': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesInline'; ofType: null; }; }; }; } }; }; }; + 'ComponentInfoBlockBlock2BodyLinks': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResources'; ofType: null; }; } }; }; }; + 'ComponentInfoBlockBlock2BodyEntries': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'ComponentInfoBlockBlock2BodyAssets': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'ComponentInfoBlockBlock2BodyResources': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; 'ComponentInfoBlockBlock2BodyResourcesBlock': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockBlock2BodyResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentInfoBlockBlock2BodyResourcesInline': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'ComponentInfoBlockBlock2BodyResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentInfoBlockBlock3Body': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3Body'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyLinks'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockBlock3BodyAssets': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'ComponentInfoBlockBlock3BodyEntries': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'ComponentInfoBlockBlock3BodyLinks': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResources'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockBlock3BodyResources': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesInline'; ofType: null; }; }; }; } }; }; }; + 'ComponentInfoBlockBlock3BodyLinks': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResources'; ofType: null; }; } }; }; }; + 'ComponentInfoBlockBlock3BodyEntries': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'ComponentInfoBlockBlock3BodyAssets': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'ComponentInfoBlockBlock3BodyResources': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; 'ComponentInfoBlockBlock3BodyResourcesBlock': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockBlock3BodyResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentInfoBlockBlock3BodyResourcesInline': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockCollection': { kind: 'OBJECT'; name: 'ComponentInfoBlockCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlock'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'ComponentInfoBlockFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentInfoBlockFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block1Image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block1Body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block1Body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block1Body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block2Image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block2Body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block2Body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block2Body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block3Image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block3Body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block3Body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block3Body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentInfoBlockFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentInfoBlockFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'ComponentInfoBlockLinkingCollections': { kind: 'OBJECT'; name: 'ComponentInfoBlockLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'ComponentInfoBlockLinkingCollectionsPageCollectionOrder': { name: 'ComponentInfoBlockLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentInfoBlockOrder': { name: 'ComponentInfoBlockOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'subline_ASC' | 'subline_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentProductTable': { kind: 'OBJECT'; name: 'ComponentProductTable'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentProductTableLinkingCollections'; ofType: null; } }; 'productsCollection': { name: 'productsCollection'; type: { kind: 'OBJECT'; name: 'ComponentProductTableProductsCollection'; ofType: null; } }; 'subline': { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'ComponentProductTableCollection': { kind: 'OBJECT'; name: 'ComponentProductTableCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentProductTable'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'ComponentProductTableFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentProductTableFilter'; inputFields: [{ name: 'products'; type: { kind: 'INPUT_OBJECT'; name: 'cfTopicProductNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'productsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentProductTableFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentProductTableFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'ComponentProductTableLinkingCollections': { kind: 'OBJECT'; name: 'ComponentProductTableLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'ComponentProductTableLinkingCollectionsPageCollectionOrder': { name: 'ComponentProductTableLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentProductTableOrder': { name: 'ComponentProductTableOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'subline_ASC' | 'subline_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentProductTableProductsCollection': { kind: 'OBJECT'; name: 'ComponentProductTableProductsCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProduct'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'ComponentProductTableProductsCollectionOrder': { name: 'ComponentProductTableProductsCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'price_ASC' | 'price_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentQuote': { kind: 'OBJECT'; name: 'ComponentQuote'; fields: { 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'image': { name: 'image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'imagePosition': { name: 'imagePosition'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentQuoteLinkingCollections'; ofType: null; } }; 'quote': { name: 'quote'; type: { kind: 'OBJECT'; name: 'ComponentQuoteQuote'; ofType: null; } }; 'quoteAlignment': { name: 'quoteAlignment'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'ComponentQuoteCollection': { kind: 'OBJECT'; name: 'ComponentQuoteCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuote'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'ComponentQuoteFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentQuoteFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quote_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'quote_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quote_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteAlignment_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'quoteAlignment'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'quoteAlignment_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imagePosition_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imagePosition'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imagePosition_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentQuoteFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentQuoteFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentInfoBlockBlock3BodyResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'ComponentQuote': { kind: 'OBJECT'; name: 'ComponentQuote'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentQuoteLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'quote': { name: 'quote'; type: { kind: 'OBJECT'; name: 'ComponentQuoteQuote'; ofType: null; } }; 'quoteAlignment': { name: 'quoteAlignment'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'image': { name: 'image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'imagePosition': { name: 'imagePosition'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'ComponentQuoteLinkingCollections': { kind: 'OBJECT'; name: 'ComponentQuoteLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'ComponentQuoteLinkingCollectionsPageCollectionOrder': { name: 'ComponentQuoteLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentQuoteOrder': { name: 'ComponentQuoteOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'quoteAlignment_ASC' | 'quoteAlignment_DESC' | 'imagePosition_ASC' | 'imagePosition_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentQuoteLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'ComponentQuoteLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; 'ComponentQuoteQuote': { kind: 'OBJECT'; name: 'ComponentQuoteQuote'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteLinks'; ofType: null; }; } }; }; }; - 'ComponentQuoteQuoteAssets': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'ComponentQuoteQuoteEntries': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'ComponentQuoteQuoteLinks': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResources'; ofType: null; }; } }; }; }; - 'ComponentQuoteQuoteResources': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesInline'; ofType: null; }; }; }; } }; }; }; + 'ComponentQuoteQuoteLinks': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResources'; ofType: null; }; } }; }; }; + 'ComponentQuoteQuoteEntries': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'ComponentQuoteQuoteAssets': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'ComponentQuoteQuoteResources': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; 'ComponentQuoteQuoteResourcesBlock': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentQuoteQuoteResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentQuoteQuoteResourcesInline': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentTextBlock': { kind: 'OBJECT'; name: 'ComponentTextBlock'; fields: { 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'ComponentTextBlockBody'; ofType: null; } }; 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentTextBlockLinkingCollections'; ofType: null; } }; 'subline': { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; + 'ComponentQuoteQuoteResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'ComponentTextBlock': { kind: 'OBJECT'; name: 'ComponentTextBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentTextBlockLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'subline': { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'ComponentTextBlockBody'; ofType: null; } }; 'colorPalette': { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'ComponentTextBlockLinkingCollections': { kind: 'OBJECT'; name: 'ComponentTextBlockLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; + 'ComponentTextBlockLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'ComponentTextBlockLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; 'ComponentTextBlockBody': { kind: 'OBJECT'; name: 'ComponentTextBlockBody'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyLinks'; ofType: null; }; } }; }; }; - 'ComponentTextBlockBodyAssets': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'ComponentTextBlockBodyEntries': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'ComponentTextBlockBodyLinks': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResources'; ofType: null; }; } }; }; }; - 'ComponentTextBlockBodyResources': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesInline'; ofType: null; }; }; }; } }; }; }; + 'ComponentTextBlockBodyLinks': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResources'; ofType: null; }; } }; }; }; + 'ComponentTextBlockBodyEntries': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'ComponentTextBlockBodyAssets': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'ComponentTextBlockBodyResources': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; 'ComponentTextBlockBodyResourcesBlock': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentTextBlockBodyResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'ComponentTextBlockBodyResourcesInline': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'ComponentTextBlockCollection': { kind: 'OBJECT'; name: 'ComponentTextBlockCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlock'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'ComponentTextBlockFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentTextBlockFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentTextBlockFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentTextBlockFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'ComponentTextBlockLinkingCollections': { kind: 'OBJECT'; name: 'ComponentTextBlockLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'ComponentTextBlockLinkingCollectionsPageCollectionOrder': { name: 'ComponentTextBlockLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ComponentTextBlockOrder': { name: 'ComponentTextBlockOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'subline_ASC' | 'subline_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'ContentfulMetadata': { kind: 'OBJECT'; name: 'ContentfulMetadata'; fields: { 'tags': { name: 'tags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulTag'; ofType: null; }; }; } }; }; }; - 'ContentfulMetadataFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; inputFields: [{ name: 'tags_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'tags'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataTagsFilter'; ofType: null; }; defaultValue: null }]; }; - 'ContentfulMetadataTagsFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataTagsFilter'; inputFields: [{ name: 'id_contains_all'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_contains_some'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_contains_none'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; - 'ContentfulTag': { kind: 'OBJECT'; name: 'ContentfulTag'; fields: { 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'DateTime': unknown; - 'Dimension': unknown; - 'EditorTest': { kind: 'OBJECT'; name: 'EditorTest'; fields: { 'adminTitle': { name: 'adminTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'body': { name: 'body'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'EditorTestLinkingCollections'; ofType: null; } }; 'ntExperiencesCollection': { name: 'ntExperiencesCollection'; type: { kind: 'OBJECT'; name: 'EditorTestNt_experiencesCollection'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'EditorTestCollection': { kind: 'OBJECT'; name: 'EditorTestCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'EditorTest'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'EditorTestFilter': { kind: 'INPUT_OBJECT'; name: 'EditorTestFilter'; inputFields: [{ name: 'nt_experiences'; type: { kind: 'INPUT_OBJECT'; name: 'cfNtExperienceNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'adminTitle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'adminTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'adminTitle_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'adminTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'adminTitle_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'adminTitle_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'adminTitle_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'body_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experiencesCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EditorTestFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EditorTestFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'EditorTestLinkingCollections': { kind: 'OBJECT'; name: 'EditorTestLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; - 'EditorTestNt_experiencesCollection': { kind: 'OBJECT'; name: 'EditorTestNt_experiencesCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'NtExperience'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'EditorTestNt_experiencesCollectionOrder': { name: 'EditorTestNt_experiencesCollectionOrder'; enumValues: 'nt_name_ASC' | 'nt_name_DESC' | 'nt_type_ASC' | 'nt_type_DESC' | 'nt_experience_id_ASC' | 'nt_experience_id_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'EditorTestOrder': { name: 'EditorTestOrder'; enumValues: 'adminTitle_ASC' | 'adminTitle_DESC' | 'description_ASC' | 'description_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'Entry': { kind: 'INTERFACE'; name: 'Entry'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; possibleTypes: 'Accordion' | 'AccordionItem' | 'ComponentCta' | 'ComponentDuplex' | 'ComponentForm' | 'ComponentHeroBanner' | 'ComponentInfoBlock' | 'ComponentProductTable' | 'ComponentQuote' | 'ComponentTextBlock' | 'EditorTest' | 'FooterMenu' | 'MenuGroup' | 'NavigationMenu' | 'NtAudience' | 'NtExperience' | 'Page' | 'Seo' | 'TopicBusinessInfo' | 'TopicPerson' | 'TopicProduct' | 'TopicProductFeature'; }; - 'EntryCollection': { kind: 'OBJECT'; name: 'EntryCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'EntryFilter': { kind: 'INPUT_OBJECT'; name: 'EntryFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EntryFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EntryFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'EntryOrder': { name: 'EntryOrder'; enumValues: 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'Float': unknown; - 'FooterMenu': { kind: 'OBJECT'; name: 'FooterMenu'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'facebookLink': { name: 'facebookLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'instagramLink': { name: 'instagramLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'legalLinks': { name: 'legalLinks'; type: { kind: 'OBJECT'; name: 'MenuGroup'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'FooterMenuLinkingCollections'; ofType: null; } }; 'linkedinLink': { name: 'linkedinLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'menuItemsCollection': { name: 'menuItemsCollection'; type: { kind: 'OBJECT'; name: 'FooterMenuMenuItemsCollection'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'twitterLink': { name: 'twitterLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'FooterMenuCollection': { kind: 'OBJECT'; name: 'FooterMenuCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'FooterMenu'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'FooterMenuFilter': { kind: 'INPUT_OBJECT'; name: 'FooterMenuFilter'; inputFields: [{ name: 'menuItems'; type: { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'legalLinks'; type: { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'menuItemsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'legalLinks_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'twitterLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'twitterLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'twitterLink_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'twitterLink_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'twitterLink_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'twitterLink_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'twitterLink_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'facebookLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'facebookLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'facebookLink_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'facebookLink_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'facebookLink_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'facebookLink_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'facebookLink_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'linkedinLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'linkedinLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'linkedinLink_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'linkedinLink_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'linkedinLink_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'linkedinLink_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'linkedinLink_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instagramLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'instagramLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instagramLink_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instagramLink_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'instagramLink_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'instagramLink_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instagramLink_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FooterMenuFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FooterMenuFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'FooterMenuLinkingCollections': { kind: 'OBJECT'; name: 'FooterMenuLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; - 'FooterMenuMenuItemsCollection': { kind: 'OBJECT'; name: 'FooterMenuMenuItemsCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'MenuGroup'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'FooterMenuMenuItemsCollectionOrder': { name: 'FooterMenuMenuItemsCollectionOrder'; enumValues: 'internalTitle_ASC' | 'internalTitle_DESC' | 'groupName_ASC' | 'groupName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'FooterMenuOrder': { name: 'FooterMenuOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'twitterLink_ASC' | 'twitterLink_DESC' | 'facebookLink_ASC' | 'facebookLink_DESC' | 'linkedinLink_ASC' | 'linkedinLink_DESC' | 'instagramLink_ASC' | 'instagramLink_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'HexColor': unknown; - 'ID': unknown; - 'ImageFormat': { name: 'ImageFormat'; enumValues: 'JPG' | 'JPG_PROGRESSIVE' | 'PNG' | 'PNG8' | 'WEBP' | 'AVIF'; }; - 'ImageResizeFocus': { name: 'ImageResizeFocus'; enumValues: 'CENTER' | 'TOP' | 'TOP_RIGHT' | 'RIGHT' | 'BOTTOM_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'LEFT' | 'TOP_LEFT' | 'FACE' | 'FACES'; }; - 'ImageResizeStrategy': { name: 'ImageResizeStrategy'; enumValues: 'FIT' | 'PAD' | 'FILL' | 'SCALE' | 'CROP' | 'THUMB'; }; - 'ImageTransformOptions': { kind: 'INPUT_OBJECT'; name: 'ImageTransformOptions'; inputFields: [{ name: 'width'; type: { kind: 'SCALAR'; name: 'Dimension'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'Dimension'; ofType: null; }; defaultValue: null }, { name: 'quality'; type: { kind: 'SCALAR'; name: 'Quality'; ofType: null; }; defaultValue: null }, { name: 'cornerRadius'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'resizeStrategy'; type: { kind: 'ENUM'; name: 'ImageResizeStrategy'; ofType: null; }; defaultValue: null }, { name: 'resizeFocus'; type: { kind: 'ENUM'; name: 'ImageResizeFocus'; ofType: null; }; defaultValue: null }, { name: 'backgroundColor'; type: { kind: 'SCALAR'; name: 'HexColor'; ofType: null; }; defaultValue: null }, { name: 'format'; type: { kind: 'ENUM'; name: 'ImageFormat'; ofType: null; }; defaultValue: null }]; }; - 'Int': unknown; - 'JSON': unknown; - 'MenuGroup': { kind: 'OBJECT'; name: 'MenuGroup'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'featuredPagesCollection': { name: 'featuredPagesCollection'; type: { kind: 'OBJECT'; name: 'MenuGroupFeaturedPagesCollection'; ofType: null; } }; 'groupLink': { name: 'groupLink'; type: { kind: 'UNION'; name: 'MenuGroupGroupLink'; ofType: null; } }; 'groupName': { name: 'groupName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internalTitle': { name: 'internalTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'MenuGroupLinkingCollections'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'MenuGroupCollection': { kind: 'OBJECT'; name: 'MenuGroupCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'MenuGroup'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'MenuGroupFeaturedPagesCollection': { kind: 'OBJECT'; name: 'MenuGroupFeaturedPagesCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'UNION'; name: 'MenuGroupFeaturedPagesItem'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'MenuGroupFeaturedPagesFilter': { kind: 'INPUT_OBJECT'; name: 'MenuGroupFeaturedPagesFilter'; inputFields: [{ name: 'topSection'; type: { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'extraSection'; type: { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seo_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'topSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageContent_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'extraSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupFeaturedPagesFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupFeaturedPagesFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'MenuGroupFeaturedPagesItem': { kind: 'UNION'; name: 'MenuGroupFeaturedPagesItem'; fields: {}; possibleTypes: 'Page'; }; - 'MenuGroupFilter': { kind: 'INPUT_OBJECT'; name: 'MenuGroupFilter'; inputFields: [{ name: 'groupLink'; type: { kind: 'INPUT_OBJECT'; name: 'cfgroupLinkMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'featuredPages'; type: { kind: 'INPUT_OBJECT'; name: 'cffeaturedPagesMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'groupName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'groupName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'groupName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'featuredPagesCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'MenuGroupGroupLink': { kind: 'UNION'; name: 'MenuGroupGroupLink'; fields: {}; possibleTypes: 'Page'; }; - 'MenuGroupGroupLinkFilter': { kind: 'INPUT_OBJECT'; name: 'MenuGroupGroupLinkFilter'; inputFields: [{ name: 'topSection'; type: { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'extraSection'; type: { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seo_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'topSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageContent_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'extraSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupGroupLinkFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MenuGroupGroupLinkFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'MenuGroupLinkingCollections': { kind: 'OBJECT'; name: 'MenuGroupLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'footerMenuCollection': { name: 'footerMenuCollection'; type: { kind: 'OBJECT'; name: 'FooterMenuCollection'; ofType: null; } }; 'navigationMenuCollection': { name: 'navigationMenuCollection'; type: { kind: 'OBJECT'; name: 'NavigationMenuCollection'; ofType: null; } }; }; }; - 'MenuGroupLinkingCollectionsFooterMenuCollectionOrder': { name: 'MenuGroupLinkingCollectionsFooterMenuCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'twitterLink_ASC' | 'twitterLink_DESC' | 'facebookLink_ASC' | 'facebookLink_DESC' | 'linkedinLink_ASC' | 'linkedinLink_DESC' | 'instagramLink_ASC' | 'instagramLink_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'MenuGroupLinkingCollectionsNavigationMenuCollectionOrder': { name: 'MenuGroupLinkingCollectionsNavigationMenuCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'MenuGroupOrder': { name: 'MenuGroupOrder'; enumValues: 'internalTitle_ASC' | 'internalTitle_DESC' | 'groupName_ASC' | 'groupName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'NavigationMenu': { kind: 'OBJECT'; name: 'NavigationMenu'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'NavigationMenuLinkingCollections'; ofType: null; } }; 'menuItemsCollection': { name: 'menuItemsCollection'; type: { kind: 'OBJECT'; name: 'NavigationMenuMenuItemsCollection'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'NavigationMenuCollection': { kind: 'OBJECT'; name: 'NavigationMenuCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'NavigationMenu'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'NavigationMenuFilter': { kind: 'INPUT_OBJECT'; name: 'NavigationMenuFilter'; inputFields: [{ name: 'menuItems'; type: { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'menuItemsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NavigationMenuFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NavigationMenuFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'NavigationMenuLinkingCollections': { kind: 'OBJECT'; name: 'NavigationMenuLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; - 'NavigationMenuMenuItemsCollection': { kind: 'OBJECT'; name: 'NavigationMenuMenuItemsCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'MenuGroup'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'NavigationMenuMenuItemsCollectionOrder': { name: 'NavigationMenuMenuItemsCollectionOrder'; enumValues: 'internalTitle_ASC' | 'internalTitle_DESC' | 'groupName_ASC' | 'groupName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'NavigationMenuOrder': { name: 'NavigationMenuOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'NtAudience': { kind: 'OBJECT'; name: 'NtAudience'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'NtAudienceLinkingCollections'; ofType: null; } }; 'ntAudienceId': { name: 'ntAudienceId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntDescription': { name: 'ntDescription'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntMetadata': { name: 'ntMetadata'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; 'ntName': { name: 'ntName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntRules': { name: 'ntRules'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'NtAudienceCollection': { kind: 'OBJECT'; name: 'NtAudienceCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'NtAudience'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'NtAudienceFilter': { kind: 'INPUT_OBJECT'; name: 'NtAudienceFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'nt_name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_rules_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_audience_id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_audience_id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_metadata_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NtAudienceFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NtAudienceFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'NtAudienceLinkingCollections': { kind: 'OBJECT'; name: 'NtAudienceLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'ntExperienceCollection': { name: 'ntExperienceCollection'; type: { kind: 'OBJECT'; name: 'NtExperienceCollection'; ofType: null; } }; }; }; - 'NtAudienceLinkingCollectionsNtExperienceCollectionOrder': { name: 'NtAudienceLinkingCollectionsNtExperienceCollectionOrder'; enumValues: 'nt_name_ASC' | 'nt_name_DESC' | 'nt_type_ASC' | 'nt_type_DESC' | 'nt_experience_id_ASC' | 'nt_experience_id_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'NtAudienceOrder': { name: 'NtAudienceOrder'; enumValues: 'nt_name_ASC' | 'nt_name_DESC' | 'nt_audience_id_ASC' | 'nt_audience_id_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'NtExperience': { kind: 'OBJECT'; name: 'NtExperience'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'NtExperienceLinkingCollections'; ofType: null; } }; 'ntAudience': { name: 'ntAudience'; type: { kind: 'OBJECT'; name: 'NtAudience'; ofType: null; } }; 'ntConfig': { name: 'ntConfig'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; 'ntDescription': { name: 'ntDescription'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntExperienceId': { name: 'ntExperienceId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntMetadata': { name: 'ntMetadata'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; 'ntName': { name: 'ntName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntType': { name: 'ntType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntVariantsCollection': { name: 'ntVariantsCollection'; type: { kind: 'OBJECT'; name: 'NtExperienceNt_variantsCollection'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'NtExperienceCollection': { kind: 'OBJECT'; name: 'NtExperienceCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'NtExperience'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'NtExperienceFilter': { kind: 'INPUT_OBJECT'; name: 'NtExperienceFilter'; inputFields: [{ name: 'nt_audience'; type: { kind: 'INPUT_OBJECT'; name: 'cfNtAudienceNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'nt_name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_type_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_config_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_variantsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_experience_id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_experience_id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_metadata_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NtExperienceFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NtExperienceFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'NtExperienceLinkingCollections': { kind: 'OBJECT'; name: 'NtExperienceLinkingCollections'; fields: { 'editorTestCollection': { name: 'editorTestCollection'; type: { kind: 'OBJECT'; name: 'EditorTestCollection'; ofType: null; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; - 'NtExperienceLinkingCollectionsEditorTestCollectionOrder': { name: 'NtExperienceLinkingCollectionsEditorTestCollectionOrder'; enumValues: 'adminTitle_ASC' | 'adminTitle_DESC' | 'description_ASC' | 'description_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'NtExperienceNt_variantsCollection': { kind: 'OBJECT'; name: 'NtExperienceNt_variantsCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'NtExperienceOrder': { name: 'NtExperienceOrder'; enumValues: 'nt_name_ASC' | 'nt_name_DESC' | 'nt_type_ASC' | 'nt_type_DESC' | 'nt_experience_id_ASC' | 'nt_experience_id_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'Page': { kind: 'OBJECT'; name: 'Page'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'extraSectionCollection': { name: 'extraSectionCollection'; type: { kind: 'OBJECT'; name: 'PageExtraSectionCollection'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'PageLinkingCollections'; ofType: null; } }; 'pageContent': { name: 'pageContent'; type: { kind: 'UNION'; name: 'PagePageContent'; ofType: null; } }; 'pageName': { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'seo': { name: 'seo'; type: { kind: 'OBJECT'; name: 'Seo'; ofType: null; } }; 'slug': { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'topSectionCollection': { name: 'topSectionCollection'; type: { kind: 'OBJECT'; name: 'PageTopSectionCollection'; ofType: null; } }; }; }; - 'PageCollection': { kind: 'OBJECT'; name: 'PageCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Page'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'PageExtraSectionCollection': { kind: 'OBJECT'; name: 'PageExtraSectionCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'UNION'; name: 'PageExtraSectionItem'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'PageExtraSectionFilter': { kind: 'INPUT_OBJECT'; name: 'PageExtraSectionFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageExtraSectionFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageExtraSectionFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'PageExtraSectionItem': { kind: 'UNION'; name: 'PageExtraSectionItem'; fields: {}; possibleTypes: 'ComponentCta' | 'ComponentDuplex' | 'ComponentHeroBanner' | 'ComponentInfoBlock' | 'ComponentQuote' | 'ComponentTextBlock'; }; - 'PageFilter': { kind: 'INPUT_OBJECT'; name: 'PageFilter'; inputFields: [{ name: 'seo'; type: { kind: 'INPUT_OBJECT'; name: 'cfSeoNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'topSection'; type: { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'extraSection'; type: { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seo_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'topSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageContent_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'extraSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'PageLinkingCollections': { kind: 'OBJECT'; name: 'PageLinkingCollections'; fields: { 'componentCtaCollection': { name: 'componentCtaCollection'; type: { kind: 'OBJECT'; name: 'ComponentCtaCollection'; ofType: null; } }; 'componentDuplexCollection': { name: 'componentDuplexCollection'; type: { kind: 'OBJECT'; name: 'ComponentDuplexCollection'; ofType: null; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; ofType: null; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'menuGroupCollection': { name: 'menuGroupCollection'; type: { kind: 'OBJECT'; name: 'MenuGroupCollection'; ofType: null; } }; }; }; - 'PageLinkingCollectionsComponentCtaCollectionOrder': { name: 'PageLinkingCollectionsComponentCtaCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'urlParameters_ASC' | 'urlParameters_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'PageLinkingCollectionsComponentDuplexCollectionOrder': { name: 'PageLinkingCollectionsComponentDuplexCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'containerLayout_ASC' | 'containerLayout_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'imageStyle_ASC' | 'imageStyle_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'PageLinkingCollectionsComponentHeroBannerCollectionOrder': { name: 'PageLinkingCollectionsComponentHeroBannerCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'imageStyle_ASC' | 'imageStyle_DESC' | 'heroSize_ASC' | 'heroSize_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'PageLinkingCollectionsMenuGroupCollectionOrder': { name: 'PageLinkingCollectionsMenuGroupCollectionOrder'; enumValues: 'internalTitle_ASC' | 'internalTitle_DESC' | 'groupName_ASC' | 'groupName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'PageOrder': { name: 'PageOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'PagePageContent': { kind: 'UNION'; name: 'PagePageContent'; fields: {}; possibleTypes: 'ComponentProductTable' | 'TopicBusinessInfo' | 'TopicProduct'; }; - 'PageTopSectionCollection': { kind: 'OBJECT'; name: 'PageTopSectionCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'UNION'; name: 'PageTopSectionItem'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; + 'ComponentTextBlockBodyResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'PageTopSectionFilter': { kind: 'INPUT_OBJECT'; name: 'PageTopSectionFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageTopSectionFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageTopSectionFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'PageTopSectionItem': { kind: 'UNION'; name: 'PageTopSectionItem'; fields: {}; possibleTypes: 'Accordion' | 'ComponentCta' | 'ComponentDuplex' | 'ComponentForm' | 'ComponentHeroBanner' | 'ComponentInfoBlock' | 'ComponentQuote' | 'ComponentTextBlock'; }; - 'Quality': unknown; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_node': { name: '_node'; type: { kind: 'INTERFACE'; name: '_Node'; ofType: null; } }; 'accordion': { name: 'accordion'; type: { kind: 'OBJECT'; name: 'Accordion'; ofType: null; } }; 'accordionCollection': { name: 'accordionCollection'; type: { kind: 'OBJECT'; name: 'AccordionCollection'; ofType: null; } }; 'accordionItem': { name: 'accordionItem'; type: { kind: 'OBJECT'; name: 'AccordionItem'; ofType: null; } }; 'accordionItemCollection': { name: 'accordionItemCollection'; type: { kind: 'OBJECT'; name: 'AccordionItemCollection'; ofType: null; } }; 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'assetCollection': { name: 'assetCollection'; type: { kind: 'OBJECT'; name: 'AssetCollection'; ofType: null; } }; 'componentCta': { name: 'componentCta'; type: { kind: 'OBJECT'; name: 'ComponentCta'; ofType: null; } }; 'componentCtaCollection': { name: 'componentCtaCollection'; type: { kind: 'OBJECT'; name: 'ComponentCtaCollection'; ofType: null; } }; 'componentDuplex': { name: 'componentDuplex'; type: { kind: 'OBJECT'; name: 'ComponentDuplex'; ofType: null; } }; 'componentDuplexCollection': { name: 'componentDuplexCollection'; type: { kind: 'OBJECT'; name: 'ComponentDuplexCollection'; ofType: null; } }; 'componentForm': { name: 'componentForm'; type: { kind: 'OBJECT'; name: 'ComponentForm'; ofType: null; } }; 'componentFormCollection': { name: 'componentFormCollection'; type: { kind: 'OBJECT'; name: 'ComponentFormCollection'; ofType: null; } }; 'componentHeroBanner': { name: 'componentHeroBanner'; type: { kind: 'OBJECT'; name: 'ComponentHeroBanner'; ofType: null; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; ofType: null; } }; 'componentInfoBlock': { name: 'componentInfoBlock'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlock'; ofType: null; } }; 'componentInfoBlockCollection': { name: 'componentInfoBlockCollection'; type: { kind: 'OBJECT'; name: 'ComponentInfoBlockCollection'; ofType: null; } }; 'componentProductTable': { name: 'componentProductTable'; type: { kind: 'OBJECT'; name: 'ComponentProductTable'; ofType: null; } }; 'componentProductTableCollection': { name: 'componentProductTableCollection'; type: { kind: 'OBJECT'; name: 'ComponentProductTableCollection'; ofType: null; } }; 'componentQuote': { name: 'componentQuote'; type: { kind: 'OBJECT'; name: 'ComponentQuote'; ofType: null; } }; 'componentQuoteCollection': { name: 'componentQuoteCollection'; type: { kind: 'OBJECT'; name: 'ComponentQuoteCollection'; ofType: null; } }; 'componentTextBlock': { name: 'componentTextBlock'; type: { kind: 'OBJECT'; name: 'ComponentTextBlock'; ofType: null; } }; 'componentTextBlockCollection': { name: 'componentTextBlockCollection'; type: { kind: 'OBJECT'; name: 'ComponentTextBlockCollection'; ofType: null; } }; 'editorTest': { name: 'editorTest'; type: { kind: 'OBJECT'; name: 'EditorTest'; ofType: null; } }; 'editorTestCollection': { name: 'editorTestCollection'; type: { kind: 'OBJECT'; name: 'EditorTestCollection'; ofType: null; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'footerMenu': { name: 'footerMenu'; type: { kind: 'OBJECT'; name: 'FooterMenu'; ofType: null; } }; 'footerMenuCollection': { name: 'footerMenuCollection'; type: { kind: 'OBJECT'; name: 'FooterMenuCollection'; ofType: null; } }; 'menuGroup': { name: 'menuGroup'; type: { kind: 'OBJECT'; name: 'MenuGroup'; ofType: null; } }; 'menuGroupCollection': { name: 'menuGroupCollection'; type: { kind: 'OBJECT'; name: 'MenuGroupCollection'; ofType: null; } }; 'navigationMenu': { name: 'navigationMenu'; type: { kind: 'OBJECT'; name: 'NavigationMenu'; ofType: null; } }; 'navigationMenuCollection': { name: 'navigationMenuCollection'; type: { kind: 'OBJECT'; name: 'NavigationMenuCollection'; ofType: null; } }; 'ntAudience': { name: 'ntAudience'; type: { kind: 'OBJECT'; name: 'NtAudience'; ofType: null; } }; 'ntAudienceCollection': { name: 'ntAudienceCollection'; type: { kind: 'OBJECT'; name: 'NtAudienceCollection'; ofType: null; } }; 'ntExperience': { name: 'ntExperience'; type: { kind: 'OBJECT'; name: 'NtExperience'; ofType: null; } }; 'ntExperienceCollection': { name: 'ntExperienceCollection'; type: { kind: 'OBJECT'; name: 'NtExperienceCollection'; ofType: null; } }; 'page': { name: 'page'; type: { kind: 'OBJECT'; name: 'Page'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; 'seo': { name: 'seo'; type: { kind: 'OBJECT'; name: 'Seo'; ofType: null; } }; 'seoCollection': { name: 'seoCollection'; type: { kind: 'OBJECT'; name: 'SeoCollection'; ofType: null; } }; 'topicBusinessInfo': { name: 'topicBusinessInfo'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfo'; ofType: null; } }; 'topicBusinessInfoCollection': { name: 'topicBusinessInfoCollection'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoCollection'; ofType: null; } }; 'topicPerson': { name: 'topicPerson'; type: { kind: 'OBJECT'; name: 'TopicPerson'; ofType: null; } }; 'topicPersonCollection': { name: 'topicPersonCollection'; type: { kind: 'OBJECT'; name: 'TopicPersonCollection'; ofType: null; } }; 'topicProduct': { name: 'topicProduct'; type: { kind: 'OBJECT'; name: 'TopicProduct'; ofType: null; } }; 'topicProductCollection': { name: 'topicProductCollection'; type: { kind: 'OBJECT'; name: 'TopicProductCollection'; ofType: null; } }; 'topicProductFeature': { name: 'topicProductFeature'; type: { kind: 'OBJECT'; name: 'TopicProductFeature'; ofType: null; } }; 'topicProductFeatureCollection': { name: 'topicProductFeatureCollection'; type: { kind: 'OBJECT'; name: 'TopicProductFeatureCollection'; ofType: null; } }; }; }; - 'ResourceLink': { kind: 'INTERFACE'; name: 'ResourceLink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; possibleTypes: 'AccordionItemBodyResourcesBlock' | 'AccordionItemBodyResourcesHyperlink' | 'AccordionItemBodyResourcesInline' | 'ComponentCtaSublineResourcesBlock' | 'ComponentCtaSublineResourcesHyperlink' | 'ComponentCtaSublineResourcesInline' | 'ComponentDuplexBodyTextResourcesBlock' | 'ComponentDuplexBodyTextResourcesHyperlink' | 'ComponentDuplexBodyTextResourcesInline' | 'ComponentHeroBannerBodyTextResourcesBlock' | 'ComponentHeroBannerBodyTextResourcesHyperlink' | 'ComponentHeroBannerBodyTextResourcesInline' | 'ComponentInfoBlockBlock1BodyResourcesBlock' | 'ComponentInfoBlockBlock1BodyResourcesHyperlink' | 'ComponentInfoBlockBlock1BodyResourcesInline' | 'ComponentInfoBlockBlock2BodyResourcesBlock' | 'ComponentInfoBlockBlock2BodyResourcesHyperlink' | 'ComponentInfoBlockBlock2BodyResourcesInline' | 'ComponentInfoBlockBlock3BodyResourcesBlock' | 'ComponentInfoBlockBlock3BodyResourcesHyperlink' | 'ComponentInfoBlockBlock3BodyResourcesInline' | 'ComponentQuoteQuoteResourcesBlock' | 'ComponentQuoteQuoteResourcesHyperlink' | 'ComponentQuoteQuoteResourcesInline' | 'ComponentTextBlockBodyResourcesBlock' | 'ComponentTextBlockBodyResourcesHyperlink' | 'ComponentTextBlockBodyResourcesInline' | 'TopicBusinessInfoBodyResourcesBlock' | 'TopicBusinessInfoBodyResourcesHyperlink' | 'TopicBusinessInfoBodyResourcesInline' | 'TopicPersonBioResourcesBlock' | 'TopicPersonBioResourcesHyperlink' | 'TopicPersonBioResourcesInline' | 'TopicProductDescriptionResourcesBlock' | 'TopicProductDescriptionResourcesHyperlink' | 'TopicProductDescriptionResourcesInline' | 'TopicProductFeatureLongDescriptionResourcesBlock' | 'TopicProductFeatureLongDescriptionResourcesHyperlink' | 'TopicProductFeatureLongDescriptionResourcesInline' | 'TopicProductFeatureShortDescriptionResourcesBlock' | 'TopicProductFeatureShortDescriptionResourcesHyperlink' | 'TopicProductFeatureShortDescriptionResourcesInline'; }; - 'ResourceSys': { kind: 'OBJECT'; name: 'ResourceSys'; fields: { 'linkType': { name: 'linkType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'urn': { name: 'urn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'Seo': { kind: 'OBJECT'; name: 'Seo'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'image': { name: 'image'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'SeoLinkingCollections'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'noFollow': { name: 'noFollow'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'noIndex': { name: 'noIndex'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'SeoCollection': { kind: 'OBJECT'; name: 'SeoCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Seo'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'SeoFilter': { kind: 'INPUT_OBJECT'; name: 'SeoFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noIndex_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noIndex'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noIndex_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noFollow_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noFollow'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noFollow_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SeoFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SeoFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'SeoLinkingCollections': { kind: 'OBJECT'; name: 'SeoLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'SeoLinkingCollectionsPageCollectionOrder': { name: 'SeoLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'SeoOrder': { name: 'SeoOrder'; enumValues: 'name_ASC' | 'name_DESC' | 'title_ASC' | 'title_DESC' | 'description_ASC' | 'description_DESC' | 'noIndex_ASC' | 'noIndex_DESC' | 'noFollow_ASC' | 'noFollow_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'String': unknown; - 'Sys': { kind: 'OBJECT'; name: 'Sys'; fields: { 'environmentId': { name: 'environmentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'firstPublishedAt': { name: 'firstPublishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'publishedAt': { name: 'publishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'publishedVersion': { name: 'publishedVersion'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'spaceId': { name: 'spaceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'SysFilter': { kind: 'INPUT_OBJECT'; name: 'SysFilter'; inputFields: [{ name: 'id_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'publishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_not'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'publishedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'publishedAt_gt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_gte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_lt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_lte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_not'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'firstPublishedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'firstPublishedAt_gt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_gte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_lt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_lte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_not'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'publishedVersion_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'publishedVersion_gt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_gte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_lt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_lte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }]; }; - 'TopicBusinessInfo': { kind: 'OBJECT'; name: 'TopicBusinessInfo'; fields: { 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoBody'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'featuredImage': { name: 'featuredImage'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoLinkingCollections'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'shortDescription': { name: 'shortDescription'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'TopicBusinessInfoBody': { kind: 'OBJECT'; name: 'TopicBusinessInfoBody'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyLinks'; ofType: null; }; } }; }; }; - 'TopicBusinessInfoBodyAssets': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'TopicBusinessInfoBodyEntries': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'TopicBusinessInfoBodyLinks': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResources'; ofType: null; }; } }; }; }; - 'TopicBusinessInfoBodyResources': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesInline'; ofType: null; }; }; }; } }; }; }; - 'TopicBusinessInfoBodyResourcesBlock': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicBusinessInfoBodyResourcesHyperlink': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicBusinessInfoBodyResourcesInline': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicBusinessInfoCollection': { kind: 'OBJECT'; name: 'TopicBusinessInfoCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfo'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'TopicBusinessInfoFilter': { kind: 'INPUT_OBJECT'; name: 'TopicBusinessInfoFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'shortDescription'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'shortDescription_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'shortDescription_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'featuredImage_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicBusinessInfoFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicBusinessInfoFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'TopicBusinessInfoLinkingCollections': { kind: 'OBJECT'; name: 'TopicBusinessInfoLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'TopicBusinessInfoLinkingCollectionsPageCollectionOrder': { name: 'TopicBusinessInfoLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'TopicBusinessInfoOrder': { name: 'TopicBusinessInfoOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'TopicPerson': { kind: 'OBJECT'; name: 'TopicPerson'; fields: { 'avatar': { name: 'avatar'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'bio': { name: 'bio'; type: { kind: 'OBJECT'; name: 'TopicPersonBio'; ofType: null; } }; 'cardStyle': { name: 'cardStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'TopicPersonLinkingCollections'; ofType: null; } }; 'location': { name: 'location'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'website': { name: 'website'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'TopicPersonBio': { kind: 'OBJECT'; name: 'TopicPersonBio'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioLinks'; ofType: null; }; } }; }; }; - 'TopicPersonBioAssets': { kind: 'OBJECT'; name: 'TopicPersonBioAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'TopicPersonBioEntries': { kind: 'OBJECT'; name: 'TopicPersonBioEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'TopicPersonBioLinks': { kind: 'OBJECT'; name: 'TopicPersonBioLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioResources'; ofType: null; }; } }; }; }; - 'TopicPersonBioResources': { kind: 'OBJECT'; name: 'TopicPersonBioResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPersonBioResourcesInline'; ofType: null; }; }; }; } }; }; }; - 'TopicPersonBioResourcesBlock': { kind: 'OBJECT'; name: 'TopicPersonBioResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicPersonBioResourcesHyperlink': { kind: 'OBJECT'; name: 'TopicPersonBioResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicPersonBioResourcesInline': { kind: 'OBJECT'; name: 'TopicPersonBioResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicPersonCollection': { kind: 'OBJECT'; name: 'TopicPersonCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicPerson'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'TopicPersonFilter': { kind: 'INPUT_OBJECT'; name: 'TopicPersonFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bio_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'bio_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bio_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'avatar_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'website_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'website'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'website_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'website_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'website_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'website_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'website_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'location_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'location'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'location_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'location_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'location_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'location_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'location_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'cardStyle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'cardStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'cardStyle_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicPersonFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicPersonFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'TopicPersonLinkingCollections': { kind: 'OBJECT'; name: 'TopicPersonLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; - 'TopicPersonOrder': { name: 'TopicPersonOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'website_ASC' | 'website_DESC' | 'location_ASC' | 'location_DESC' | 'cardStyle_ASC' | 'cardStyle_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'TopicProduct': { kind: 'OBJECT'; name: 'TopicProduct'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'OBJECT'; name: 'TopicProductDescription'; ofType: null; } }; 'featuredImage': { name: 'featuredImage'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'featuresCollection': { name: 'featuresCollection'; type: { kind: 'OBJECT'; name: 'TopicProductFeaturesCollection'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'TopicProductLinkingCollections'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'price': { name: 'price'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'TopicProductCollection': { kind: 'OBJECT'; name: 'TopicProductCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProduct'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; + 'PagePageContent': { kind: 'UNION'; name: 'PagePageContent'; fields: {}; possibleTypes: 'ComponentProductTable' | 'TopicBusinessInfo' | 'TopicProduct'; }; + 'ComponentProductTable': { kind: 'OBJECT'; name: 'ComponentProductTable'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ComponentProductTableLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'headline': { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'subline': { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'productsCollection': { name: 'productsCollection'; type: { kind: 'OBJECT'; name: 'ComponentProductTableProductsCollection'; ofType: null; } }; }; }; + 'ComponentProductTableLinkingCollections': { kind: 'OBJECT'; name: 'ComponentProductTableLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; + 'ComponentProductTableLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'ComponentProductTableLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentProductTableProductsCollection': { kind: 'OBJECT'; name: 'ComponentProductTableProductsCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProduct'; ofType: null; }; }; } }; }; }; + 'TopicProduct': { kind: 'OBJECT'; name: 'TopicProduct'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'TopicProductLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'OBJECT'; name: 'TopicProductDescription'; ofType: null; } }; 'featuredImage': { name: 'featuredImage'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'featuresCollection': { name: 'featuresCollection'; type: { kind: 'OBJECT'; name: 'TopicProductFeaturesCollection'; ofType: null; } }; 'price': { name: 'price'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; }; + 'TopicProductLinkingCollections': { kind: 'OBJECT'; name: 'TopicProductLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; 'componentProductTableCollection': { name: 'componentProductTableCollection'; type: { kind: 'OBJECT'; name: 'ComponentProductTableCollection'; ofType: null; } }; }; }; + 'TopicProductLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'TopicProductLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentProductTableCollection': { kind: 'OBJECT'; name: 'ComponentProductTableCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentProductTable'; ofType: null; }; }; } }; }; }; + 'TopicProductLinkingCollectionsComponentProductTableCollectionOrder': { kind: 'ENUM'; name: 'TopicProductLinkingCollectionsComponentProductTableCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'subline_ASC' | 'subline_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; 'TopicProductDescription': { kind: 'OBJECT'; name: 'TopicProductDescription'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionLinks'; ofType: null; }; } }; }; }; - 'TopicProductDescriptionAssets': { kind: 'OBJECT'; name: 'TopicProductDescriptionAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'TopicProductDescriptionEntries': { kind: 'OBJECT'; name: 'TopicProductDescriptionEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'TopicProductDescriptionLinks': { kind: 'OBJECT'; name: 'TopicProductDescriptionLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionResources'; ofType: null; }; } }; }; }; - 'TopicProductDescriptionResources': { kind: 'OBJECT'; name: 'TopicProductDescriptionResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesInline'; ofType: null; }; }; }; } }; }; }; + 'TopicProductDescriptionLinks': { kind: 'OBJECT'; name: 'TopicProductDescriptionLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionResources'; ofType: null; }; } }; }; }; + 'TopicProductDescriptionEntries': { kind: 'OBJECT'; name: 'TopicProductDescriptionEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'TopicProductDescriptionAssets': { kind: 'OBJECT'; name: 'TopicProductDescriptionAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'TopicProductDescriptionResources': { kind: 'OBJECT'; name: 'TopicProductDescriptionResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; 'TopicProductDescriptionResourcesBlock': { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicProductDescriptionResourcesHyperlink': { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'TopicProductDescriptionResourcesInline': { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicProductFeature': { kind: 'OBJECT'; name: 'TopicProductFeature'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'TopicProductFeatureLinkingCollections'; ofType: null; } }; 'longDescription': { name: 'longDescription'; type: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescription'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'shortDescription': { name: 'shortDescription'; type: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescription'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; }; - 'TopicProductFeatureCollection': { kind: 'OBJECT'; name: 'TopicProductFeatureCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeature'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'TopicProductFeatureFilter': { kind: 'INPUT_OBJECT'; name: 'TopicProductFeatureFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'longDescription_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'longDescription_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'longDescription_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicProductFeatureFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicProductFeatureFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'TopicProductDescriptionResourcesHyperlink': { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'TopicProductFeaturesCollection': { kind: 'OBJECT'; name: 'TopicProductFeaturesCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeature'; ofType: null; }; }; } }; }; }; + 'TopicProductFeature': { kind: 'OBJECT'; name: 'TopicProductFeature'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'TopicProductFeatureLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'shortDescription': { name: 'shortDescription'; type: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescription'; ofType: null; } }; 'longDescription': { name: 'longDescription'; type: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescription'; ofType: null; } }; }; }; 'TopicProductFeatureLinkingCollections': { kind: 'OBJECT'; name: 'TopicProductFeatureLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'topicProductCollection': { name: 'topicProductCollection'; type: { kind: 'OBJECT'; name: 'TopicProductCollection'; ofType: null; } }; }; }; - 'TopicProductFeatureLinkingCollectionsTopicProductCollectionOrder': { name: 'TopicProductFeatureLinkingCollectionsTopicProductCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'price_ASC' | 'price_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'TopicProductFeatureLongDescription': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescription'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionLinks'; ofType: null; }; } }; }; }; - 'TopicProductFeatureLongDescriptionAssets': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'TopicProductFeatureLongDescriptionEntries': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'TopicProductFeatureLongDescriptionLinks': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResources'; ofType: null; }; } }; }; }; - 'TopicProductFeatureLongDescriptionResources': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesInline'; ofType: null; }; }; }; } }; }; }; - 'TopicProductFeatureLongDescriptionResourcesBlock': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicProductFeatureLongDescriptionResourcesHyperlink': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicProductFeatureLongDescriptionResourcesInline': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicProductFeatureOrder': { name: 'TopicProductFeatureOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'TopicProductCollection': { kind: 'OBJECT'; name: 'TopicProductCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProduct'; ofType: null; }; }; } }; }; }; + 'TopicProductFeatureLinkingCollectionsTopicProductCollectionOrder': { kind: 'ENUM'; name: 'TopicProductFeatureLinkingCollectionsTopicProductCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'price_ASC' | 'price_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; 'TopicProductFeatureShortDescription': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescription'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionLinks'; ofType: null; }; } }; }; }; - 'TopicProductFeatureShortDescriptionAssets': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; - 'TopicProductFeatureShortDescriptionEntries': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; - 'TopicProductFeatureShortDescriptionLinks': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResources'; ofType: null; }; } }; }; }; - 'TopicProductFeatureShortDescriptionResources': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesBlock'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesHyperlink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesInline'; ofType: null; }; }; }; } }; }; }; + 'TopicProductFeatureShortDescriptionLinks': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResources'; ofType: null; }; } }; }; }; + 'TopicProductFeatureShortDescriptionEntries': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'TopicProductFeatureShortDescriptionAssets': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'TopicProductFeatureShortDescriptionResources': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; 'TopicProductFeatureShortDescriptionResourcesBlock': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicProductFeatureShortDescriptionResourcesHyperlink': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; 'TopicProductFeatureShortDescriptionResourcesInline': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'TopicProductFeaturesCollection': { kind: 'OBJECT'; name: 'TopicProductFeaturesCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeature'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'TopicProductFeaturesCollectionOrder': { name: 'TopicProductFeaturesCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'TopicProductFeatureShortDescriptionResourcesHyperlink': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'TopicProductFeatureLongDescription': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescription'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionLinks'; ofType: null; }; } }; }; }; + 'TopicProductFeatureLongDescriptionLinks': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResources'; ofType: null; }; } }; }; }; + 'TopicProductFeatureLongDescriptionEntries': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'TopicProductFeatureLongDescriptionAssets': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'TopicProductFeatureLongDescriptionResources': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; + 'TopicProductFeatureLongDescriptionResourcesBlock': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'TopicProductFeatureLongDescriptionResourcesInline': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'TopicProductFeatureLongDescriptionResourcesHyperlink': { kind: 'OBJECT'; name: 'TopicProductFeatureLongDescriptionResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'TopicProductFeatureFilter': { kind: 'INPUT_OBJECT'; name: 'TopicProductFeatureFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'longDescription_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'longDescription_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'longDescription_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicProductFeatureFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicProductFeatureFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'TopicProductFeaturesCollectionOrder': { kind: 'ENUM'; name: 'TopicProductFeaturesCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; 'TopicProductFilter': { kind: 'INPUT_OBJECT'; name: 'TopicProductFilter'; inputFields: [{ name: 'features'; type: { kind: 'INPUT_OBJECT'; name: 'cfTopicProductFeatureNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'featuredImage_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'featuresCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'price_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'price'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'price_not'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'price_gt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'price_gte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'price_lt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'price_lte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicProductFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicProductFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'TopicProductLinkingCollections': { kind: 'OBJECT'; name: 'TopicProductLinkingCollections'; fields: { 'componentProductTableCollection': { name: 'componentProductTableCollection'; type: { kind: 'OBJECT'; name: 'ComponentProductTableCollection'; ofType: null; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'TopicProductLinkingCollectionsComponentProductTableCollectionOrder': { name: 'TopicProductLinkingCollectionsComponentProductTableCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'subline_ASC' | 'subline_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'TopicProductLinkingCollectionsPageCollectionOrder': { name: 'TopicProductLinkingCollectionsPageCollectionOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - 'TopicProductOrder': { name: 'TopicProductOrder'; enumValues: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'price_ASC' | 'price_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; - '_Node': { kind: 'INTERFACE'; name: '_Node'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; possibleTypes: never; }; - 'cfAccordionItemNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfAccordionItemNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heading'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfAccordionItemNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfAccordionItemNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'cfMenuGroupNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'groupName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'groupName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'groupName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'featuredPagesCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'cfTopicProductFeatureNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfTopicProductFeatureNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'longDescription_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'longDescription_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'longDescription_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfTopicProductFeatureNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfTopicProductFeatureNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentProductTableProductsCollectionOrder': { kind: 'ENUM'; name: 'ComponentProductTableProductsCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'price_ASC' | 'price_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'TopicBusinessInfo': { kind: 'OBJECT'; name: 'TopicBusinessInfo'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoLinkingCollections'; ofType: null; } }; 'internalName': { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'shortDescription': { name: 'shortDescription'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'featuredImage': { name: 'featuredImage'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoBody'; ofType: null; } }; }; }; + 'TopicBusinessInfoLinkingCollections': { kind: 'OBJECT'; name: 'TopicBusinessInfoLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; + 'TopicBusinessInfoLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'TopicBusinessInfoLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'TopicBusinessInfoBody': { kind: 'OBJECT'; name: 'TopicBusinessInfoBody'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyLinks'; ofType: null; }; } }; }; }; + 'TopicBusinessInfoBodyLinks': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResources'; ofType: null; }; } }; }; }; + 'TopicBusinessInfoBodyEntries': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'TopicBusinessInfoBodyAssets': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'TopicBusinessInfoBodyResources': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; + 'TopicBusinessInfoBodyResourcesBlock': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'TopicBusinessInfoBodyResourcesInline': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'TopicBusinessInfoBodyResourcesHyperlink': { kind: 'OBJECT'; name: 'TopicBusinessInfoBodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'PageExtraSectionCollection': { kind: 'OBJECT'; name: 'PageExtraSectionCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'UNION'; name: 'PageExtraSectionItem'; ofType: null; }; }; } }; }; }; + 'PageExtraSectionItem': { kind: 'UNION'; name: 'PageExtraSectionItem'; fields: {}; possibleTypes: 'ComponentCta' | 'ComponentDuplex' | 'ComponentHeroBanner' | 'ComponentInfoBlock' | 'ComponentQuote' | 'ComponentTextBlock'; }; + 'PageExtraSectionFilter': { kind: 'INPUT_OBJECT'; name: 'PageExtraSectionFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageExtraSectionFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageExtraSectionFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentDuplexLinkingCollectionsPageCollectionOrder': { kind: 'ENUM'; name: 'ComponentDuplexLinkingCollectionsPageCollectionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentDuplexBodyText': { kind: 'OBJECT'; name: 'ComponentDuplexBodyText'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextLinks'; ofType: null; }; } }; }; }; + 'ComponentDuplexBodyTextLinks': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResources'; ofType: null; }; } }; }; }; + 'ComponentDuplexBodyTextEntries': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextEntries'; fields: { 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'ComponentDuplexBodyTextAssets': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextAssets'; fields: { 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'ComponentDuplexBodyTextResources': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesBlock'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesInline'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; + 'ComponentDuplexBodyTextResourcesBlock': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'ComponentDuplexBodyTextResourcesInline': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'ComponentDuplexBodyTextResourcesHyperlink': { kind: 'OBJECT'; name: 'ComponentDuplexBodyTextResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'ComponentDuplexTargetPage': { kind: 'UNION'; name: 'ComponentDuplexTargetPage'; fields: {}; possibleTypes: 'Page'; }; + 'TopicBusinessInfoCollection': { kind: 'OBJECT'; name: 'TopicBusinessInfoCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicBusinessInfo'; ofType: null; }; }; } }; }; }; + 'ComponentQuoteCollection': { kind: 'OBJECT'; name: 'ComponentQuoteCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentQuote'; ofType: null; }; }; } }; }; }; + 'SeoCollection': { kind: 'OBJECT'; name: 'SeoCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Seo'; ofType: null; }; }; } }; }; }; + 'ComponentInfoBlockCollection': { kind: 'OBJECT'; name: 'ComponentInfoBlockCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentInfoBlock'; ofType: null; }; }; } }; }; }; + 'AssetCollection': { kind: 'OBJECT'; name: 'AssetCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; }; + 'AssetFilter': { kind: 'INPUT_OBJECT'; name: 'AssetFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'url_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'url_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'size_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'size_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'size_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'contentType_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'contentType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contentType_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contentType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'contentType_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'contentType_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contentType_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'fileName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'fileName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'fileName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'width_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'width'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'width_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'width_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'height_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'height_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AssetFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AssetFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'AssetOrder': { kind: 'ENUM'; name: 'AssetOrder'; type: 'url_ASC' | 'url_DESC' | 'size_ASC' | 'size_DESC' | 'contentType_ASC' | 'contentType_DESC' | 'fileName_ASC' | 'fileName_DESC' | 'width_ASC' | 'width_DESC' | 'height_ASC' | 'height_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'EditorTest': { kind: 'OBJECT'; name: 'EditorTest'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'EditorTestLinkingCollections'; ofType: null; } }; 'adminTitle': { name: 'adminTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'body': { name: 'body'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntExperiencesCollection': { name: 'ntExperiencesCollection'; type: { kind: 'OBJECT'; name: 'EditorTestNt_experiencesCollection'; ofType: null; } }; }; }; + 'EditorTestLinkingCollections': { kind: 'OBJECT'; name: 'EditorTestLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; + 'EditorTestNt_experiencesCollection': { kind: 'OBJECT'; name: 'EditorTestNt_experiencesCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'NtExperience'; ofType: null; }; }; } }; }; }; + 'NtExperience': { kind: 'OBJECT'; name: 'NtExperience'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'NtExperienceLinkingCollections'; ofType: null; } }; 'ntName': { name: 'ntName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntDescription': { name: 'ntDescription'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntType': { name: 'ntType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntConfig': { name: 'ntConfig'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; 'ntAudience': { name: 'ntAudience'; type: { kind: 'OBJECT'; name: 'NtAudience'; ofType: null; } }; 'ntVariantsCollection': { name: 'ntVariantsCollection'; type: { kind: 'OBJECT'; name: 'NtExperienceNt_variantsCollection'; ofType: null; } }; 'ntExperienceId': { name: 'ntExperienceId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntMetadata': { name: 'ntMetadata'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; }; }; + 'NtExperienceLinkingCollections': { kind: 'OBJECT'; name: 'NtExperienceLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'editorTestCollection': { name: 'editorTestCollection'; type: { kind: 'OBJECT'; name: 'EditorTestCollection'; ofType: null; } }; }; }; + 'EditorTestCollection': { kind: 'OBJECT'; name: 'EditorTestCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'EditorTest'; ofType: null; }; }; } }; }; }; + 'NtExperienceLinkingCollectionsEditorTestCollectionOrder': { kind: 'ENUM'; name: 'NtExperienceLinkingCollectionsEditorTestCollectionOrder'; type: 'adminTitle_ASC' | 'adminTitle_DESC' | 'description_ASC' | 'description_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'NtAudience': { kind: 'OBJECT'; name: 'NtAudience'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'NtAudienceLinkingCollections'; ofType: null; } }; 'ntName': { name: 'ntName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntDescription': { name: 'ntDescription'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntRules': { name: 'ntRules'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; 'ntAudienceId': { name: 'ntAudienceId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ntMetadata': { name: 'ntMetadata'; type: { kind: 'SCALAR'; name: 'JSON'; ofType: null; } }; }; }; + 'NtAudienceLinkingCollections': { kind: 'OBJECT'; name: 'NtAudienceLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'ntExperienceCollection': { name: 'ntExperienceCollection'; type: { kind: 'OBJECT'; name: 'NtExperienceCollection'; ofType: null; } }; }; }; + 'NtExperienceCollection': { kind: 'OBJECT'; name: 'NtExperienceCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'NtExperience'; ofType: null; }; }; } }; }; }; + 'NtAudienceLinkingCollectionsNtExperienceCollectionOrder': { kind: 'ENUM'; name: 'NtAudienceLinkingCollectionsNtExperienceCollectionOrder'; type: 'nt_name_ASC' | 'nt_name_DESC' | 'nt_type_ASC' | 'nt_type_DESC' | 'nt_experience_id_ASC' | 'nt_experience_id_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'NtAudienceFilter': { kind: 'INPUT_OBJECT'; name: 'NtAudienceFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'nt_name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_rules_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_audience_id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_audience_id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_metadata_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NtAudienceFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NtAudienceFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'NtExperienceNt_variantsCollection': { kind: 'OBJECT'; name: 'NtExperienceNt_variantsCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; }; + 'NtExperienceFilter': { kind: 'INPUT_OBJECT'; name: 'NtExperienceFilter'; inputFields: [{ name: 'nt_audience'; type: { kind: 'INPUT_OBJECT'; name: 'cfNtAudienceNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'nt_name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_type_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_config_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_variantsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_experience_id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_experience_id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_metadata_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NtExperienceFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NtExperienceFilter'; ofType: null; }; }; defaultValue: null }]; }; 'cfNtAudienceNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfNtAudienceNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'nt_name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_rules_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_audience_id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_audience_id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_metadata_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfNtAudienceNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfNtAudienceNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'EditorTestNt_experiencesCollectionOrder': { kind: 'ENUM'; name: 'EditorTestNt_experiencesCollectionOrder'; type: 'nt_name_ASC' | 'nt_name_DESC' | 'nt_type_ASC' | 'nt_type_DESC' | 'nt_experience_id_ASC' | 'nt_experience_id_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'EditorTestFilter': { kind: 'INPUT_OBJECT'; name: 'EditorTestFilter'; inputFields: [{ name: 'nt_experiences'; type: { kind: 'INPUT_OBJECT'; name: 'cfNtExperienceNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'adminTitle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'adminTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'adminTitle_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'adminTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'adminTitle_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'adminTitle_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'adminTitle_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'body_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experiencesCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EditorTestFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EditorTestFilter'; ofType: null; }; }; defaultValue: null }]; }; 'cfNtExperienceNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfNtExperienceNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'nt_name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_type_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_type_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_config_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_audience_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_variantsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_experience_id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'nt_experience_id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_experience_id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nt_metadata_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfNtExperienceNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfNtExperienceNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'EditorTestOrder': { kind: 'ENUM'; name: 'EditorTestOrder'; type: 'adminTitle_ASC' | 'adminTitle_DESC' | 'description_ASC' | 'description_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'AccordionItemCollection': { kind: 'OBJECT'; name: 'AccordionItemCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'AccordionItem'; ofType: null; }; }; } }; }; }; + 'AccordionItemOrder': { kind: 'ENUM'; name: 'AccordionItemOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'heading_ASC' | 'heading_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'AccordionFilter': { kind: 'INPUT_OBJECT'; name: 'AccordionFilter'; inputFields: [{ name: 'items'; type: { kind: 'INPUT_OBJECT'; name: 'cfAccordionItemNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heading'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'expandType_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'expandType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'expandType_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'expandType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'expandType_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'expandType_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'expandType_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'itemsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccordionFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AccordionFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'cfAccordionItemNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfAccordionItemNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heading'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'heading_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'heading_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfAccordionItemNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfAccordionItemNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'AccordionOrder': { kind: 'ENUM'; name: 'AccordionOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'heading_ASC' | 'heading_DESC' | 'expandType_ASC' | 'expandType_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'PageFilter': { kind: 'INPUT_OBJECT'; name: 'PageFilter'; inputFields: [{ name: 'seo'; type: { kind: 'INPUT_OBJECT'; name: 'cfSeoNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'topSection'; type: { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'extraSection'; type: { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seo_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'topSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageContent_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'extraSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageFilter'; ofType: null; }; }; defaultValue: null }]; }; 'cfSeoNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfSeoNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noIndex_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noIndex'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noIndex_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noFollow_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noFollow'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'noFollow_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfSeoNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfSeoNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'cfTopicProductFeatureNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfTopicProductFeatureNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'longDescription_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'longDescription_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'longDescription_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfTopicProductFeatureNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfTopicProductFeatureNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'PageOrder': { kind: 'ENUM'; name: 'PageOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'pageName_ASC' | 'pageName_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'NtExperienceOrder': { kind: 'ENUM'; name: 'NtExperienceOrder'; type: 'nt_name_ASC' | 'nt_name_DESC' | 'nt_type_ASC' | 'nt_type_DESC' | 'nt_experience_id_ASC' | 'nt_experience_id_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'TopicPersonFilter': { kind: 'INPUT_OBJECT'; name: 'TopicPersonFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bio_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'bio_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bio_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'avatar_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'website_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'website'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'website_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'website_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'website_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'website_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'website_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'location_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'location'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'location_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'location_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'location_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'location_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'location_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'cardStyle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'cardStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'cardStyle_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicPersonFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicPersonFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'TopicPersonOrder': { kind: 'ENUM'; name: 'TopicPersonOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'website_ASC' | 'website_DESC' | 'location_ASC' | 'location_DESC' | 'cardStyle_ASC' | 'cardStyle_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentFormCollection': { kind: 'OBJECT'; name: 'ComponentFormCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentForm'; ofType: null; }; }; } }; }; }; + 'ComponentFormFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentFormFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'form_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'form'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'form_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'form_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'form_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'form_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'form_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentFormFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentFormFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentFormOrder': { kind: 'ENUM'; name: 'ComponentFormOrder'; type: 'internalTitle_ASC' | 'internalTitle_DESC' | 'headline_ASC' | 'headline_DESC' | 'form_ASC' | 'form_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentDuplexFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentDuplexFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'containerLayout_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'containerLayout'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'containerLayout_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bodyText_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'bodyText_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bodyText_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'targetPage_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentDuplexFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentDuplexFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentDuplexOrder': { kind: 'ENUM'; name: 'ComponentDuplexOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'containerLayout_ASC' | 'containerLayout_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'imageStyle_ASC' | 'imageStyle_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'NtAudienceCollection': { kind: 'OBJECT'; name: 'NtAudienceCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'NtAudience'; ofType: null; }; }; } }; }; }; + 'NtAudienceOrder': { kind: 'ENUM'; name: 'NtAudienceOrder'; type: 'nt_name_ASC' | 'nt_name_DESC' | 'nt_audience_id_ASC' | 'nt_audience_id_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'TopicBusinessInfoFilter': { kind: 'INPUT_OBJECT'; name: 'TopicBusinessInfoFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'shortDescription'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'shortDescription_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'shortDescription_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'shortDescription_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'featuredImage_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicBusinessInfoFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TopicBusinessInfoFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'TopicBusinessInfoOrder': { kind: 'ENUM'; name: 'TopicBusinessInfoOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'FooterMenuFilter': { kind: 'INPUT_OBJECT'; name: 'FooterMenuFilter'; inputFields: [{ name: 'menuItems'; type: { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'legalLinks'; type: { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'menuItemsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'legalLinks_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'twitterLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'twitterLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'twitterLink_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'twitterLink_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'twitterLink_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'twitterLink_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'twitterLink_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'facebookLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'facebookLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'facebookLink_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'facebookLink_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'facebookLink_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'facebookLink_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'facebookLink_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'linkedinLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'linkedinLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'linkedinLink_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'linkedinLink_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'linkedinLink_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'linkedinLink_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'linkedinLink_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instagramLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'instagramLink'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instagramLink_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instagramLink_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'instagramLink_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'instagramLink_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instagramLink_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FooterMenuFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FooterMenuFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'cfMenuGroupNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalTitle_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalTitle_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'groupName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'groupName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'groupName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'groupLink_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'featuredPagesCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'FooterMenuOrder': { kind: 'ENUM'; name: 'FooterMenuOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'twitterLink_ASC' | 'twitterLink_DESC' | 'facebookLink_ASC' | 'facebookLink_DESC' | 'linkedinLink_ASC' | 'linkedinLink_DESC' | 'instagramLink_ASC' | 'instagramLink_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'NavigationMenuFilter': { kind: 'INPUT_OBJECT'; name: 'NavigationMenuFilter'; inputFields: [{ name: 'menuItems'; type: { kind: 'INPUT_OBJECT'; name: 'cfMenuGroupNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'menuItemsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NavigationMenuFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NavigationMenuFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'NavigationMenuOrder': { kind: 'ENUM'; name: 'NavigationMenuOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'MenuGroupOrder': { kind: 'ENUM'; name: 'MenuGroupOrder'; type: 'internalTitle_ASC' | 'internalTitle_DESC' | 'groupName_ASC' | 'groupName_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'TopicProductOrder': { kind: 'ENUM'; name: 'TopicProductOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'price_ASC' | 'price_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'TopicProductFeatureCollection': { kind: 'OBJECT'; name: 'TopicProductFeatureCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TopicProductFeature'; ofType: null; }; }; } }; }; }; + 'TopicProductFeatureOrder': { kind: 'ENUM'; name: 'TopicProductFeatureOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'name_ASC' | 'name_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentQuoteFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentQuoteFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quote_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'quote_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quote_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteAlignment_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'quoteAlignment'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'quoteAlignment_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imagePosition_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imagePosition'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imagePosition_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentQuoteFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentQuoteFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentQuoteOrder': { kind: 'ENUM'; name: 'ComponentQuoteOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'quoteAlignment_ASC' | 'quoteAlignment_DESC' | 'imagePosition_ASC' | 'imagePosition_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'SeoOrder': { kind: 'ENUM'; name: 'SeoOrder'; type: 'name_ASC' | 'name_DESC' | 'title_ASC' | 'title_DESC' | 'description_ASC' | 'description_DESC' | 'noIndex_ASC' | 'noIndex_DESC' | 'noFollow_ASC' | 'noFollow_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentTextBlockCollection': { kind: 'OBJECT'; name: 'ComponentTextBlockCollection'; fields: { 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ComponentTextBlock'; ofType: null; }; }; } }; }; }; + 'ComponentTextBlockFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentTextBlockFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentTextBlockFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentTextBlockFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentTextBlockOrder': { kind: 'ENUM'; name: 'ComponentTextBlockOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'subline_ASC' | 'subline_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentInfoBlockFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentInfoBlockFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block1Image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block1Body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block1Body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block1Body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block2Image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block2Body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block2Body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block2Body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block3Image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block3Body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'block3Body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block3Body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentInfoBlockFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentInfoBlockFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentInfoBlockOrder': { kind: 'ENUM'; name: 'ComponentInfoBlockOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'subline_ASC' | 'subline_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentProductTableFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentProductTableFilter'; inputFields: [{ name: 'products'; type: { kind: 'INPUT_OBJECT'; name: 'cfTopicProductNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'subline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'productsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentProductTableFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentProductTableFilter'; ofType: null; }; }; defaultValue: null }]; }; 'cfTopicProductNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfTopicProductNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'featuredImage_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'featuresCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'price_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'price'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'price_not'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'price_gt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'price_gte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'price_lt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'price_lte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfTopicProductNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfTopicProductNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'cfextraSectionMultiTypeNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfextraSectionMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'cffeaturedPagesMultiTypeNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cffeaturedPagesMultiTypeNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seo_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'topSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageContent_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'extraSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cffeaturedPagesMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cffeaturedPagesMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'cfgroupLinkMultiTypeNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfgroupLinkMultiTypeNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'pageName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pageName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seo_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'topSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageContent_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'extraSectionCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfgroupLinkMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfgroupLinkMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'cftopSectionMultiTypeNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cftopSectionMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentProductTableOrder': { kind: 'ENUM'; name: 'ComponentProductTableOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'subline_ASC' | 'subline_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentCtaFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentCtaFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'subline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'targetPage_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'urlParameters_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'urlParameters'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'urlParameters_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'urlParameters_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'urlParameters_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'urlParameters_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'urlParameters_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentCtaFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentCtaFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentCtaOrder': { kind: 'ENUM'; name: 'ComponentCtaOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'urlParameters_ASC' | 'urlParameters_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'ComponentHeroBannerFilter': { kind: 'INPUT_OBJECT'; name: 'ComponentHeroBannerFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'internalName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'internalName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'internalName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internalName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'headline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'headline_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'headline_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bodyText_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'bodyText_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bodyText_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'ctaText'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ctaText_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ctaText_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'targetPage_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'image_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'imageStyle_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heroSize_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heroSize'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'heroSize_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'colorPalette'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'colorPalette_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'colorPalette_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentHeroBannerFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ComponentHeroBannerFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'ComponentHeroBannerOrder': { kind: 'ENUM'; name: 'ComponentHeroBannerOrder'; type: 'internalName_ASC' | 'internalName_DESC' | 'headline_ASC' | 'headline_DESC' | 'ctaText_ASC' | 'ctaText_DESC' | 'imageStyle_ASC' | 'imageStyle_DESC' | 'heroSize_ASC' | 'heroSize_DESC' | 'colorPalette_ASC' | 'colorPalette_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + 'EntryFilter': { kind: 'INPUT_OBJECT'; name: 'EntryFilter'; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EntryFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EntryFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'EntryOrder': { kind: 'ENUM'; name: 'EntryOrder'; type: 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; }; + '_Node': { kind: 'INTERFACE'; name: '_Node'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; possibleTypes: never; }; }; }; diff --git a/lib/getPageSlug.ts b/lib/getPageSlug.ts index b8f1c9a..d0d1255 100644 --- a/lib/getPageSlug.ts +++ b/lib/getPageSlug.ts @@ -18,12 +18,12 @@ const getPageSlug = async (slug: string, locale: string, preview = false) => { `); return ( - await graphqlClient(preview).request(pageSlugQuery, { + await graphqlClient(preview).query(pageSlugQuery, { locale, preview, slug, }) - ).pageCollection?.items?.[0]; + ).data?.pageCollection?.items?.[0]; }; export default getPageSlug; diff --git a/lib/graphqlClient.ts b/lib/graphqlClient.ts index 5118d78..c0feab1 100644 --- a/lib/graphqlClient.ts +++ b/lib/graphqlClient.ts @@ -1,14 +1,45 @@ -import { GraphQLClient } from "graphql-request"; +/** + * This file is a server-only file, meaning it should not be included in the client bundle. + * @see https://nextjs.org/docs/app/building-your-application/rendering/composition-patterns#keeping-server-only-code-out-of-the-client-environment + */ +import "server-only"; +import memoize from "lodash/memoize"; const graphqlEndpoint = `https://graphql.contentful.com/content/v1/spaces/${process.env.CONTENTFUL_SPACE}/environments/${process.env.CONTENTFUL_ENVIRONMENT}`; -export const graphqlClient = (preview: boolean) => - new GraphQLClient(graphqlEndpoint, { - headers: { - authorization: `Bearer ${ - preview - ? process.env.CONTENTFUL_PREVIEW_API - : process.env.CONTENTFUL_DELIVERY_API - }`, - }, +import { createClient, fetchExchange } from "@urql/core"; +import { persistedExchange } from "@urql/exchange-persisted"; + +const makeClient = (preview: boolean) => { + return createClient({ + url: + graphqlEndpoint + + `?access_token=${preview ? process.env.CONTENTFUL_PREVIEW_API : process.env.CONTENTFUL_DELIVERY_API}`, + exchanges: [ + /** + * Enable Automated Persisted Queries to reduce the size of the request. + * + * Keep in mind persistedExchange should be placed before fetchExchange. + * + * @see https://www.contentful.com/developers/docs/references/graphql/#/reference/automatic-persisted-queries + */ + persistedExchange({ + preferGetForPersistedQueries: true, + }), + fetchExchange, + ], }); +}; + +/** + * Use memoize to share a client between all requests. + * While urql docs mention using registerUrql to memoize the client, + * at the moment of writing, registerUrql uses React.cache which works only in RSCs. + * + * We use lodash.memoize to allow usage in server-actions and other non-RSC cases. + * + * @see https://react.dev/reference/react/cache#pitfall-memoized-call-outside-component + * @see https://commerce.nearform.com/open-source/urql/docs/advanced/server-side-rendering/#nextjs + */ + +export const graphqlClient = memoize(makeClient); diff --git a/package.json b/package.json index 00d1da0..b675bc5 100644 --- a/package.json +++ b/package.json @@ -21,21 +21,24 @@ "@types/node": "18.11.11", "@types/react": "^18.2.14", "@types/react-dom": "^18.2.6", + "@urql/exchange-persisted": "^4.2.0", "class-variance-authority": "^0.7.0", "clsx": "^2.0.0", "encoding": "^0.1.13", "eslint": "8.29.0", "eslint-config-next": "^14.1.0", "gql.tada": "^1.5.1", - "graphql": "^16.7.1", + "graphql": "^16.8.1", "graphql-request": "^6.1.0", "lucide-react": "^0.368.0", "next": "^14.1.0", "react": "^18.2.0", "react-dom": "^18.2.0", + "server-only": "^0.0.1", "tailwind-merge": "^1.14.0", "tailwindcss-animate": "^1.0.6", - "typescript": "^5.4.3" + "typescript": "^5.4.3", + "urql": "^4.0.7" }, "devDependencies": { "@0no-co/graphqlsp": "^1.7.0", diff --git a/yarn.lock b/yarn.lock index 49b10b6..6a0658f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3465,6 +3465,22 @@ resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== +"@urql/core@>=4.3.0", "@urql/core@^5.0.0": + version "5.0.1" + resolved "https://registry.npmjs.org/@urql/core/-/core-5.0.1.tgz#05c429ad24fda80b5d78ce746dfec407af98306b" + integrity sha512-bTtJDbPGF7UNynGt0E0DgokBeGUL9IU33+k7s/c6dvBUjwO2mOxB0GWNe7fhUcqIJAU1sONYkabTep/OGaxhsQ== + dependencies: + "@0no-co/graphql.web" "^1.0.5" + wonka "^6.3.2" + +"@urql/exchange-persisted@^4.2.0": + version "4.2.0" + resolved "https://registry.npmjs.org/@urql/exchange-persisted/-/exchange-persisted-4.2.0.tgz#0587fd3344ec0597f1a2ce6f63e0bf230e68f64f" + integrity sha512-Q23UOcO9YPibPcAZ+4+PMPstijoVIzjqAfPufOmgK3rmuEjnIQYlzRJGxn90r3uunXYiVj3gHXo9qhfrzGRreQ== + dependencies: + "@urql/core" ">=4.3.0" + wonka "^6.3.2" + "@vercel/stega@^0.1.0": version "0.1.0" resolved "https://registry.yarnpkg.com/@vercel/stega/-/stega-0.1.0.tgz#2eadbbc9eb0eaab26d28b0c443a922d78c23b6e3" @@ -6999,7 +7015,7 @@ graphql-tag@^2.12.6: dependencies: tslib "^2.1.0" -graphql@^16.7.1, graphql@^16.8.1: +graphql@^16.8.1: version "16.8.1" resolved "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz#1930a965bef1170603702acdb68aedd3f3cf6f07" integrity sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw== @@ -10252,6 +10268,11 @@ serve-static@1.15.0: parseurl "~1.3.3" send "0.18.0" +server-only@^0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/server-only/-/server-only-0.0.1.tgz#0f366bb6afb618c37c9255a314535dc412cd1c9e" + integrity sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA== + set-function-length@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.1.tgz#47cc5945f2c771e2cf261c6737cf9684a2a5e425" @@ -11426,6 +11447,14 @@ url@^0.11.0: punycode "^1.4.1" qs "^6.11.2" +urql@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/urql/-/urql-4.0.7.tgz#7c2c7eecce3bf0d2bd2d5be372515bf6dd2f13c2" + integrity sha512-wnOONtZoYEobmamM5ushUBGil6UCUPd7SH5uEAqsz5Y/qBV88/2QG6jq7v6xP+413x5Lqy0h0hCGRB0KIeG6Kg== + dependencies: + "@urql/core" "^5.0.0" + wonka "^6.3.2" + util-arity@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/util-arity/-/util-arity-1.1.0.tgz#59d01af1fdb3fede0ac4e632b0ab5f6ce97c9330" @@ -11755,6 +11784,11 @@ wildcard@^2.0.0: resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== +wonka@^6.3.2: + version "6.3.4" + resolved "https://registry.npmjs.org/wonka/-/wonka-6.3.4.tgz#76eb9316e3d67d7febf4945202b5bdb2db534594" + integrity sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg== + wordwrap@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"