From de2a00248a29b26e7af58579923034cb4910d37d Mon Sep 17 00:00:00 2001 From: Andrei Tipa Date: Mon, 21 Oct 2024 17:22:19 -0600 Subject: [PATCH 1/3] feat(demo): Add demo content. Adjust components. --- app/globals.css | 4 + .../hero-banner-ctf-client.tsx | 2 + components/icons/icons.tsx | 8 + components/navigation/navigation.tsx | 11 +- components/ui/hero-banner/hero-banner.tsx | 37 +- components/ui/navigation-menu.tsx | 2 +- .../topic-business-info.tsx | 2 +- components/ui/topic-person/topic-person.tsx | 4 +- gql/graphql-env.d.ts | 593 +++++++++--------- gql/schema.graphql | 24 + 10 files changed, 379 insertions(+), 308 deletions(-) diff --git a/app/globals.css b/app/globals.css index c41b859..fd0b1af 100644 --- a/app/globals.css +++ b/app/globals.css @@ -74,3 +74,7 @@ @apply bg-background text-foreground; } } + +.wysiwyg p { + margin-block: 16px; +} \ No newline at end of file diff --git a/components/hero-banner-ctf/hero-banner-ctf-client.tsx b/components/hero-banner-ctf/hero-banner-ctf-client.tsx index b56a487..3597cda 100644 --- a/components/hero-banner-ctf/hero-banner-ctf-client.tsx +++ b/components/hero-banner-ctf/hero-banner-ctf-client.tsx @@ -35,6 +35,8 @@ export const HeroBannerCtfClient: React.FC<{ priority: true, }) } + size={data.heroSize} + colorPalette={data.colorPalette} addAttributes={addAttributes} /> ); diff --git a/components/icons/icons.tsx b/components/icons/icons.tsx index d1a7848..2d8a940 100644 --- a/components/icons/icons.tsx +++ b/components/icons/icons.tsx @@ -54,4 +54,12 @@ export const Icons = { ), + altLogo: (props: React.SVGProps) => ( + + + + + + + ), }; diff --git a/components/navigation/navigation.tsx b/components/navigation/navigation.tsx index 77e6801..10ebf10 100644 --- a/components/navigation/navigation.tsx +++ b/components/navigation/navigation.tsx @@ -198,7 +198,7 @@ export const Navigation = (props: NavigationProps) => {
- +
@@ -231,11 +231,10 @@ export const Navigation = (props: NavigationProps) => { Notifications - This is an example of the shadcn/ui{' '} - - Sheet - {' '} - component used to display a notification sidebar. + + Your inbox is as quiet as a wizard’s spellbook at midnight. Check back later for magical updates, + order statuses, or special offers from The Alchemist’s Vault. + diff --git a/components/ui/hero-banner/hero-banner.tsx b/components/ui/hero-banner/hero-banner.tsx index e0f4769..20fd4cc 100644 --- a/components/ui/hero-banner/hero-banner.tsx +++ b/components/ui/hero-banner/hero-banner.tsx @@ -1,5 +1,8 @@ import { ReactNode } from 'react'; +import { cn } from '#/lib/utils'; +import { getColorConfigFromPalette } from '#/theme'; + import { Button } from '../button/button'; import { Image, ImageProps } from '../image'; import { Link, LinkProps } from '../link'; @@ -9,6 +12,8 @@ interface HeroBannerProps { bodyText?: ReactNode; image?: ImageProps | null; cta?: LinkProps | null; + size?: boolean | null; + colorPalette?: string | null; addAttributes?: (name: string) => object | null; } @@ -18,11 +23,19 @@ export function HeroBanner(props: HeroBannerProps) { headline, bodyText, cta, + size, + colorPalette, addAttributes = () => ({}), // Default to no-op. } = props; + const colorConfig = getColorConfigFromPalette(colorPalette || ''); + return ( -
+
{image && ( {image.alt} )} -
+
+
{headline && (

{headline}

)} - {bodyText &&
{bodyText}
} + {bodyText && ( +
+ {bodyText} +
+ )} {cta?.href && cta?.children && (
diff --git a/components/ui/topic-person/topic-person.tsx b/components/ui/topic-person/topic-person.tsx index 08d5f82..28258d3 100644 --- a/components/ui/topic-person/topic-person.tsx +++ b/components/ui/topic-person/topic-person.tsx @@ -23,14 +23,14 @@ export const TopicPerson = ({ addAttributes = () => ({}), }: TopicBusinessInfoProps) => { return ( -
+
{avatar && (
{avatar.alt}
{!cardStyle && ( -
+
Leader profile
)} diff --git a/gql/graphql-env.d.ts b/gql/graphql-env.d.ts index 89c1284..3a07dab 100644 --- a/gql/graphql-env.d.ts +++ b/gql/graphql-env.d.ts @@ -16,337 +16,340 @@ export type introspection = { mutation: never; subscription: never; types: { - '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; } }; 'page': { name: 'page'; type: { kind: 'OBJECT'; name: 'Page'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; 'topicPerson': { name: 'topicPerson'; type: { kind: 'OBJECT'; name: 'TopicPerson'; ofType: null; } }; 'topicPersonCollection': { name: 'topicPersonCollection'; type: { kind: 'OBJECT'; name: 'TopicPersonCollection'; ofType: null; } }; 'topicBusinessInfo': { name: 'topicBusinessInfo'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfo'; ofType: null; } }; 'topicBusinessInfoCollection': { name: 'topicBusinessInfoCollection'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoCollection'; ofType: null; } }; 'basicPage': { name: 'basicPage'; type: { kind: 'OBJECT'; name: 'BasicPage'; ofType: null; } }; 'basicPageCollection': { name: 'basicPageCollection'; type: { kind: 'OBJECT'; name: 'BasicPageCollection'; ofType: null; } }; 'accordion': { name: 'accordion'; type: { kind: 'OBJECT'; name: 'Accordion'; ofType: null; } }; 'accordionCollection': { name: 'accordionCollection'; type: { kind: 'OBJECT'; name: 'AccordionCollection'; ofType: null; } }; 'componentHeroBanner': { name: 'componentHeroBanner'; type: { kind: 'OBJECT'; name: 'ComponentHeroBanner'; ofType: null; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; 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; } }; 'ntExperience': { name: 'ntExperience'; type: { kind: 'OBJECT'; name: 'NtExperience'; ofType: null; } }; 'ntExperienceCollection': { name: 'ntExperienceCollection'; type: { kind: 'OBJECT'; name: 'NtExperienceCollection'; 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; } }; '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; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; '_node': { name: '_node'; type: { kind: 'INTERFACE'; name: '_Node'; ofType: null; } }; }; }; - 'String': unknown; + 'Accordion': { kind: 'OBJECT'; name: 'Accordion'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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'; }; + 'BasicPage': { kind: 'OBJECT'; name: 'BasicPage'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'BasicPageBody'; 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: 'BasicPageLinkingCollections'; 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; }; } }; }; }; + 'BasicPageBody': { kind: 'OBJECT'; name: 'BasicPageBody'; 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: 'BasicPageBodyLinks'; ofType: null; }; } }; }; }; + 'BasicPageBodyAssets': { kind: 'OBJECT'; name: 'BasicPageBodyAssets'; 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; }; }; } }; }; }; + 'BasicPageBodyEntries': { kind: 'OBJECT'; name: 'BasicPageBodyEntries'; 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; }; }; } }; }; }; + 'BasicPageBodyLinks': { kind: 'OBJECT'; name: 'BasicPageBodyLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyResources'; ofType: null; }; } }; }; }; + 'BasicPageBodyResources': { kind: 'OBJECT'; name: 'BasicPageBodyResources'; 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: 'BasicPageBodyResourcesBlock'; 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: 'BasicPageBodyResourcesHyperlink'; 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: 'BasicPageBodyResourcesInline'; ofType: null; }; }; }; } }; }; }; + 'BasicPageBodyResourcesBlock': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'BasicPageBodyResourcesHyperlink': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'BasicPageBodyResourcesInline': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'BasicPageCollection': { kind: 'OBJECT'; name: 'BasicPageCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPage'; 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; }; } }; }; }; + 'BasicPageFilter': { kind: 'INPUT_OBJECT'; name: 'BasicPageFilter'; inputFields: [{ name: 'seo'; type: { kind: 'INPUT_OBJECT'; name: 'cfSeoNestedFilter'; 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: '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: 'BasicPageFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BasicPageFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'BasicPageLinkingCollections': { kind: 'OBJECT'; name: 'BasicPageLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; + 'BasicPageOrder': { name: 'BasicPageOrder'; 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'; }; 'Boolean': unknown; - '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; } }; 'locale': { name: 'locale'; type: { kind: 'SCALAR'; name: 'String'; 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; } }; 'topicBusinessInfoCollection': { name: 'topicBusinessInfoCollection'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoCollection'; ofType: null; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; ofType: null; } }; 'componentDuplexCollection': { name: 'componentDuplexCollection'; type: { kind: 'OBJECT'; name: 'ComponentDuplexCollection'; 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; } }; }; }; - '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' | 'TopicBusinessInfo' | 'Page' | 'ComponentHeroBanner' | 'ComponentDuplex' | 'MenuGroup' | 'FooterMenu' | 'NavigationMenu' | 'ComponentCta' | 'Seo' | 'BasicPage' | 'Accordion' | 'AccordionItem' | 'ComponentForm' | 'ComponentInfoBlock' | 'ComponentQuote' | 'ComponentTextBlock' | 'ComponentProductTable' | 'TopicProduct' | 'TopicProductFeature' | '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; }; }; - '_Node': { kind: 'INTERFACE'; name: '_Node'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; possibleTypes: 'TopicPerson' | 'TopicBusinessInfo' | 'Page' | 'ComponentHeroBanner' | 'ComponentDuplex' | 'MenuGroup' | 'FooterMenu' | 'NavigationMenu' | 'ComponentCta' | 'Seo' | 'BasicPage' | 'Accordion' | 'AccordionItem' | 'ComponentForm' | 'ComponentInfoBlock' | 'ComponentQuote' | 'ComponentTextBlock' | 'ComponentProductTable' | 'TopicProduct' | 'TopicProductFeature' | 'EditorTest' | 'NtExperience' | 'NtAudience'; }; - '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' | 'ComponentHeroBannerBodyTextResourcesBlock' | 'ComponentHeroBannerBodyTextResourcesInline' | 'ComponentHeroBannerBodyTextResourcesHyperlink' | 'ComponentDuplexBodyTextResourcesBlock' | 'ComponentDuplexBodyTextResourcesInline' | 'ComponentDuplexBodyTextResourcesHyperlink' | 'ComponentCtaSublineResourcesBlock' | 'ComponentCtaSublineResourcesInline' | 'ComponentCtaSublineResourcesHyperlink' | 'BasicPageBodyResourcesBlock' | 'BasicPageBodyResourcesInline' | 'BasicPageBodyResourcesHyperlink' | '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'; }; - '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; }; } }; }; }; - '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; }; }; } }; }; }; - '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; }; }; - '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; 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': { 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; }; } }; }; }; - '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; }; } }; }; }; - 'ComponentHeroBannerBodyTextResourcesInline': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesInline'; 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; }; } }; }; }; - 'ComponentHeroBannerTargetPage': { kind: 'UNION'; name: 'ComponentHeroBannerTargetPage'; fields: {}; possibleTypes: 'Page'; }; - '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'; }; - '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; }; }; - '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'; }; - '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; }; }; + 'ComponentCta': { kind: 'OBJECT'; name: 'ComponentCta'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '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 }]; }; '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': { 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'; }; + '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'; }; '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; }; } }; }; }; - '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; }; }; }; } }; }; }; + '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; }; }; }; } }; }; }; 'ComponentCtaSublineResourcesBlock': { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesBlock'; 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; }; } }; }; }; + 'ComponentCtaSublineResourcesInline': { kind: 'OBJECT'; name: 'ComponentCtaSublineResourcesInline'; 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'; }; - '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'; }; - '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; 'basicPageCollection': { name: 'basicPageCollection'; type: { kind: 'OBJECT'; name: 'BasicPageCollection'; 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'; }; - 'BasicPageCollection': { kind: 'OBJECT'; name: 'BasicPageCollection'; 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: 'BasicPage'; ofType: null; }; }; } }; }; }; - 'BasicPage': { kind: 'OBJECT'; name: 'BasicPage'; 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: 'BasicPageLinkingCollections'; ofType: null; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'BasicPageBody'; ofType: null; } }; }; }; - 'BasicPageLinkingCollections': { kind: 'OBJECT'; name: 'BasicPageLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; 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 }]; }; - 'BasicPageBody': { kind: 'OBJECT'; name: 'BasicPageBody'; 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: 'BasicPageBodyLinks'; ofType: null; }; } }; }; }; - 'BasicPageBodyLinks': { kind: 'OBJECT'; name: 'BasicPageBodyLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyResources'; ofType: null; }; } }; }; }; - 'BasicPageBodyEntries': { kind: 'OBJECT'; name: 'BasicPageBodyEntries'; 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; }; }; } }; }; }; - 'BasicPageBodyAssets': { kind: 'OBJECT'; name: 'BasicPageBodyAssets'; 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; }; }; } }; }; }; - 'BasicPageBodyResources': { kind: 'OBJECT'; name: 'BasicPageBodyResources'; 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: 'BasicPageBodyResourcesBlock'; 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: 'BasicPageBodyResourcesInline'; 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: 'BasicPageBodyResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; - 'BasicPageBodyResourcesBlock': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'BasicPageBodyResourcesInline': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'BasicPageBodyResourcesHyperlink': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'SeoLinkingCollectionsBasicPageCollectionOrder': { kind: 'ENUM'; name: 'SeoLinkingCollectionsBasicPageCollectionOrder'; 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'; }; - '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; }; }; + 'ComponentDuplex': { kind: 'OBJECT'; name: 'ComponentDuplex'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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': { 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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'; }; + '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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; } }; }; }; + '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; }; }; }; } }; }; }; + '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'; }; + 'ComponentHeroBannerTargetPage': { kind: 'UNION'; name: 'ComponentHeroBannerTargetPage'; fields: {}; possibleTypes: 'Page'; }; + 'ComponentInfoBlock': { kind: 'OBJECT'; name: 'ComponentInfoBlock'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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; }; } }; }; }; '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; }; } }; }; }; - '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; }; }; }; } }; }; }; + '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; }; }; }; } }; }; }; 'ComponentInfoBlockBlock1BodyResourcesBlock': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesBlock'; 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; }; } }; }; }; + 'ComponentInfoBlockBlock1BodyResourcesInline': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock1BodyResourcesInline'; 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; }; } }; }; }; - '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; }; }; }; } }; }; }; + '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; }; }; }; } }; }; }; 'ComponentInfoBlockBlock2BodyResourcesBlock': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesBlock'; 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; }; } }; }; }; + 'ComponentInfoBlockBlock2BodyResourcesInline': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock2BodyResourcesInline'; 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; }; } }; }; }; - '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; }; }; }; } }; }; }; + '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; }; }; }; } }; }; }; 'ComponentInfoBlockBlock3BodyResourcesBlock': { kind: 'OBJECT'; name: 'ComponentInfoBlockBlock3BodyResourcesBlock'; 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; }; } }; }; }; '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; }; }; + '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; }; } }; '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 }]; }; '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': { 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'; }; + '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'; }; '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; }; } }; }; }; - '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; }; }; }; } }; }; }; + '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; }; }; }; } }; }; }; 'ComponentQuoteQuoteResourcesBlock': { kind: 'OBJECT'; name: 'ComponentQuoteQuoteResourcesBlock'; 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; }; } }; }; }; '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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'; }; + '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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; }; } }; }; }; '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; }; } }; }; }; - '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; }; }; }; } }; }; }; + '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; }; }; }; } }; }; }; 'ComponentTextBlockBodyResourcesBlock': { kind: 'OBJECT'; name: 'ComponentTextBlockBodyResourcesBlock'; 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; }; } }; }; }; '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 }]; }; + '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: { 'concepts': { name: 'concepts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TaxonomyConcept'; ofType: null; }; }; } }; 'tags': { name: 'tags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulTag'; ofType: null; }; }; } }; }; }; + 'ContentfulMetadataConceptsDescendantsFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsDescendantsFilter'; 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 }]; }; + 'ContentfulMetadataConceptsFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsFilter'; 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 }, { name: 'descendants'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsDescendantsFilter'; ofType: null; }; defaultValue: 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 }, { name: 'concepts_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'concepts'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsFilter'; 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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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' | 'BasicPage' | '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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'; }; - '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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'; }; + '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; }; } }; }; }; + '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; } }; 'basicPage': { name: 'basicPage'; type: { kind: 'OBJECT'; name: 'BasicPage'; ofType: null; } }; 'basicPageCollection': { name: 'basicPageCollection'; type: { kind: 'OBJECT'; name: 'BasicPageCollection'; 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' | 'BasicPageBodyResourcesBlock' | 'BasicPageBodyResourcesHyperlink' | 'BasicPageBodyResourcesInline' | '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '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: { 'basicPageCollection': { name: 'basicPageCollection'; type: { kind: 'OBJECT'; name: 'BasicPageCollection'; ofType: null; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; + 'SeoLinkingCollectionsBasicPageCollectionOrder': { name: 'SeoLinkingCollectionsBasicPageCollectionOrder'; 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'; }; + '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; }; } }; 'locale': { name: 'locale'; type: { 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 }]; }; + 'TaxonomyConcept': { kind: 'OBJECT'; name: 'TaxonomyConcept'; fields: { 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'TopicBusinessInfo': { kind: 'OBJECT'; name: 'TopicBusinessInfo'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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; }; } }; }; }; '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; }; } }; }; }; - '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; }; }; }; } }; }; }; + '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; }; }; }; } }; }; }; 'TopicProductDescriptionResourcesBlock': { kind: 'OBJECT'; name: 'TopicProductDescriptionResourcesBlock'; 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; }; } }; }; }; '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; }; }; + '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: '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 }]; }; '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; } }; }; }; - '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; }; } }; }; }; - '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; }; } }; }; }; - 'TopicProductFeatureShortDescriptionResourcesInline': { kind: 'OBJECT'; name: 'TopicProductFeatureShortDescriptionResourcesInline'; 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; }; } }; }; }; + '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; }; } }; }; }; - '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; }; }; }; } }; }; }; + '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; }; } }; }; }; - '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'; }; + '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'; }; + '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; }; }; }; } }; }; }; + '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'; }; '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 }]; }; - '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'; }; - '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 }]; }; - '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; }; } }; }; }; - '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'; }; - '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 }]; }; - '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'; }; - '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'; }; - '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'; }; - 'BasicPageFilter': { kind: 'INPUT_OBJECT'; name: 'BasicPageFilter'; inputFields: [{ name: 'seo'; type: { kind: 'INPUT_OBJECT'; name: 'cfSeoNestedFilter'; 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: '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: 'BasicPageFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BasicPageFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'BasicPageOrder': { kind: 'ENUM'; name: 'BasicPageOrder'; 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'; }; - '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 }]; }; + '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: 'Accordion' | 'AccordionItem' | 'BasicPage' | 'ComponentCta' | 'ComponentDuplex' | 'ComponentForm' | 'ComponentHeroBanner' | 'ComponentInfoBlock' | 'ComponentProductTable' | 'ComponentQuote' | 'ComponentTextBlock' | 'EditorTest' | 'FooterMenu' | 'MenuGroup' | 'NavigationMenu' | 'NtAudience' | 'NtExperience' | 'Page' | 'Seo' | 'TopicBusinessInfo' | 'TopicPerson' | 'TopicProduct' | 'TopicProductFeature'; }; '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'; }; - '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'; }; - '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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 }]; }; + '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 }]; }; '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'; }; - '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'; }; - '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'; }; - '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 }]; }; + '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 }]; }; '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 }]; }; - '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'; }; - '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'; }; + '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 }]; }; }; }; diff --git a/gql/schema.graphql b/gql/schema.graphql index d20bda3..7716161 100644 --- a/gql/schema.graphql +++ b/gql/schema.graphql @@ -90,6 +90,15 @@ scalar DateTime type ContentfulMetadata { tags: [ContentfulTag]! + concepts: [TaxonomyConcept]! +} + +""" +Represents a tag entity for finding and organizing content easily. + Find out more here: https://www.contentful.com/developers/docs/references/content-delivery-api/#/reference/content-concepts +""" +type TaxonomyConcept { + id: String } """ @@ -795,6 +804,21 @@ input SysFilter { input ContentfulMetadataFilter { tags_exists: Boolean tags: ContentfulMetadataTagsFilter + concepts_exists: Boolean + concepts: ContentfulMetadataConceptsFilter +} + +input ContentfulMetadataConceptsFilter { + id_contains_all: [String] + id_contains_some: [String] + id_contains_none: [String] + descendants: ContentfulMetadataConceptsDescendantsFilter +} + +input ContentfulMetadataConceptsDescendantsFilter { + id_contains_all: [String] + id_contains_some: [String] + id_contains_none: [String] } input ContentfulMetadataTagsFilter { From 23f7f55c6482e8075e4c984555a1225b0eecb27f Mon Sep 17 00:00:00 2001 From: Andrei Tipa Date: Mon, 21 Oct 2024 17:25:18 -0600 Subject: [PATCH 2/3] feat(demo): Adjust small screen styles. --- components/ui/hero-banner/hero-banner.tsx | 2 +- gql/graphql-env.d.ts | 596 +++++++++++----------- 2 files changed, 299 insertions(+), 299 deletions(-) diff --git a/components/ui/hero-banner/hero-banner.tsx b/components/ui/hero-banner/hero-banner.tsx index 20fd4cc..0354abe 100644 --- a/components/ui/hero-banner/hero-banner.tsx +++ b/components/ui/hero-banner/hero-banner.tsx @@ -50,7 +50,7 @@ export function HeroBanner(props: HeroBannerProps) { >
diff --git a/gql/graphql-env.d.ts b/gql/graphql-env.d.ts index 3a07dab..dd5f5af 100644 --- a/gql/graphql-env.d.ts +++ b/gql/graphql-env.d.ts @@ -16,340 +16,340 @@ export type introspection = { mutation: never; subscription: never; types: { - 'Accordion': { kind: 'OBJECT'; name: 'Accordion'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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'; }; - 'BasicPage': { kind: 'OBJECT'; name: 'BasicPage'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'BasicPageBody'; 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: 'BasicPageLinkingCollections'; 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; }; } }; }; }; - 'BasicPageBody': { kind: 'OBJECT'; name: 'BasicPageBody'; 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: 'BasicPageBodyLinks'; ofType: null; }; } }; }; }; - 'BasicPageBodyAssets': { kind: 'OBJECT'; name: 'BasicPageBodyAssets'; 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; }; }; } }; }; }; - 'BasicPageBodyEntries': { kind: 'OBJECT'; name: 'BasicPageBodyEntries'; 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; }; }; } }; }; }; - 'BasicPageBodyLinks': { kind: 'OBJECT'; name: 'BasicPageBodyLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyResources'; ofType: null; }; } }; }; }; - 'BasicPageBodyResources': { kind: 'OBJECT'; name: 'BasicPageBodyResources'; 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: 'BasicPageBodyResourcesBlock'; 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: 'BasicPageBodyResourcesHyperlink'; 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: 'BasicPageBodyResourcesInline'; ofType: null; }; }; }; } }; }; }; - 'BasicPageBodyResourcesBlock': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'BasicPageBodyResourcesHyperlink': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'BasicPageBodyResourcesInline': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; - 'BasicPageCollection': { kind: 'OBJECT'; name: 'BasicPageCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPage'; 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; }; } }; }; }; - 'BasicPageFilter': { kind: 'INPUT_OBJECT'; name: 'BasicPageFilter'; inputFields: [{ name: 'seo'; type: { kind: 'INPUT_OBJECT'; name: 'cfSeoNestedFilter'; 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: '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: 'BasicPageFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BasicPageFilter'; ofType: null; }; }; defaultValue: null }]; }; - 'BasicPageLinkingCollections': { kind: 'OBJECT'; name: 'BasicPageLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; }; - 'BasicPageOrder': { name: 'BasicPageOrder'; 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'; }; + '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; } }; 'page': { name: 'page'; type: { kind: 'OBJECT'; name: 'Page'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; 'topicPerson': { name: 'topicPerson'; type: { kind: 'OBJECT'; name: 'TopicPerson'; ofType: null; } }; 'topicPersonCollection': { name: 'topicPersonCollection'; type: { kind: 'OBJECT'; name: 'TopicPersonCollection'; ofType: null; } }; 'topicBusinessInfo': { name: 'topicBusinessInfo'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfo'; ofType: null; } }; 'topicBusinessInfoCollection': { name: 'topicBusinessInfoCollection'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoCollection'; ofType: null; } }; 'basicPage': { name: 'basicPage'; type: { kind: 'OBJECT'; name: 'BasicPage'; ofType: null; } }; 'basicPageCollection': { name: 'basicPageCollection'; type: { kind: 'OBJECT'; name: 'BasicPageCollection'; ofType: null; } }; 'accordion': { name: 'accordion'; type: { kind: 'OBJECT'; name: 'Accordion'; ofType: null; } }; 'accordionCollection': { name: 'accordionCollection'; type: { kind: 'OBJECT'; name: 'AccordionCollection'; ofType: null; } }; 'componentHeroBanner': { name: 'componentHeroBanner'; type: { kind: 'OBJECT'; name: 'ComponentHeroBanner'; ofType: null; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; 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; } }; 'ntExperience': { name: 'ntExperience'; type: { kind: 'OBJECT'; name: 'NtExperience'; ofType: null; } }; 'ntExperienceCollection': { name: 'ntExperienceCollection'; type: { kind: 'OBJECT'; name: 'NtExperienceCollection'; 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; } }; '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; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '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; } }; 'locale': { name: 'locale'; type: { kind: 'SCALAR'; name: 'String'; 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; }; }; } }; 'concepts': { name: 'concepts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TaxonomyConcept'; ofType: null; }; }; } }; }; }; + 'TaxonomyConcept': { kind: 'OBJECT'; name: 'TaxonomyConcept'; fields: { 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; 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; } }; 'topicBusinessInfoCollection': { name: 'topicBusinessInfoCollection'; type: { kind: 'OBJECT'; name: 'TopicBusinessInfoCollection'; ofType: null; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; ofType: null; } }; 'componentDuplexCollection': { name: 'componentDuplexCollection'; type: { kind: 'OBJECT'; name: 'ComponentDuplexCollection'; 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; } }; }; }; + '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' | 'TopicBusinessInfo' | 'Page' | 'ComponentHeroBanner' | 'ComponentDuplex' | 'MenuGroup' | 'FooterMenu' | 'NavigationMenu' | 'ComponentCta' | 'Seo' | 'BasicPage' | 'Accordion' | 'AccordionItem' | 'ComponentForm' | 'ComponentInfoBlock' | 'ComponentQuote' | 'ComponentTextBlock' | 'ComponentProductTable' | 'TopicProduct' | 'TopicProductFeature' | '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; }; }; + '_Node': { kind: 'INTERFACE'; name: '_Node'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; possibleTypes: 'TopicPerson' | 'TopicBusinessInfo' | 'Page' | 'ComponentHeroBanner' | 'ComponentDuplex' | 'MenuGroup' | 'FooterMenu' | 'NavigationMenu' | 'ComponentCta' | 'Seo' | 'BasicPage' | 'Accordion' | 'AccordionItem' | 'ComponentForm' | 'ComponentInfoBlock' | 'ComponentQuote' | 'ComponentTextBlock' | 'ComponentProductTable' | 'TopicProduct' | 'TopicProductFeature' | 'EditorTest' | 'NtExperience' | 'NtAudience'; }; + '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' | 'ComponentHeroBannerBodyTextResourcesBlock' | 'ComponentHeroBannerBodyTextResourcesInline' | 'ComponentHeroBannerBodyTextResourcesHyperlink' | 'ComponentDuplexBodyTextResourcesBlock' | 'ComponentDuplexBodyTextResourcesInline' | 'ComponentDuplexBodyTextResourcesHyperlink' | 'ComponentCtaSublineResourcesBlock' | 'ComponentCtaSublineResourcesInline' | 'ComponentCtaSublineResourcesHyperlink' | 'BasicPageBodyResourcesBlock' | 'BasicPageBodyResourcesInline' | 'BasicPageBodyResourcesHyperlink' | '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'; }; + '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; }; } }; }; }; + '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; }; }; } }; }; }; + '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; }; }; + '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; 'componentHeroBannerCollection': { name: 'componentHeroBannerCollection'; type: { kind: 'OBJECT'; name: 'ComponentHeroBannerCollection'; 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': { 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; }; } }; }; }; + '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; }; } }; }; }; + 'ComponentHeroBannerBodyTextResourcesInline': { kind: 'OBJECT'; name: 'ComponentHeroBannerBodyTextResourcesInline'; 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; }; } }; }; }; + 'ComponentHeroBannerTargetPage': { kind: 'UNION'; name: 'ComponentHeroBannerTargetPage'; fields: {}; possibleTypes: 'Page'; }; + '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'; }; + '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; }; }; + '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'; }; + '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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 }, { name: 'concepts_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'concepts'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsFilter'; ofType: null; }; defaultValue: null }]; }; + 'ContentfulMetadataConceptsFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsFilter'; 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 }, { name: 'descendants'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsDescendantsFilter'; ofType: null; }; defaultValue: null }]; }; + 'ContentfulMetadataConceptsDescendantsFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsDescendantsFilter'; 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 }]; }; + '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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 }]; }; + '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'; }; + '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; 'basicPageCollection': { name: 'basicPageCollection'; type: { kind: 'OBJECT'; name: 'BasicPageCollection'; 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'; }; + 'BasicPageCollection': { kind: 'OBJECT'; name: 'BasicPageCollection'; 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: 'BasicPage'; ofType: null; }; }; } }; }; }; + 'BasicPage': { kind: 'OBJECT'; name: 'BasicPage'; 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: 'BasicPageLinkingCollections'; ofType: null; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'BasicPageBody'; ofType: null; } }; }; }; + 'BasicPageLinkingCollections': { kind: 'OBJECT'; name: 'BasicPageLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; 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 }]; }; + 'BasicPageBody': { kind: 'OBJECT'; name: 'BasicPageBody'; 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: 'BasicPageBodyLinks'; ofType: null; }; } }; }; }; + 'BasicPageBodyLinks': { kind: 'OBJECT'; name: 'BasicPageBodyLinks'; fields: { 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyEntries'; ofType: null; }; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyAssets'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BasicPageBodyResources'; ofType: null; }; } }; }; }; + 'BasicPageBodyEntries': { kind: 'OBJECT'; name: 'BasicPageBodyEntries'; 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; }; }; } }; }; }; + 'BasicPageBodyAssets': { kind: 'OBJECT'; name: 'BasicPageBodyAssets'; 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; }; }; } }; }; }; + 'BasicPageBodyResources': { kind: 'OBJECT'; name: 'BasicPageBodyResources'; 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: 'BasicPageBodyResourcesBlock'; 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: 'BasicPageBodyResourcesInline'; 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: 'BasicPageBodyResourcesHyperlink'; ofType: null; }; }; }; } }; }; }; + 'BasicPageBodyResourcesBlock': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesBlock'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'BasicPageBodyResourcesInline': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesInline'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'BasicPageBodyResourcesHyperlink': { kind: 'OBJECT'; name: 'BasicPageBodyResourcesHyperlink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; }; + 'SeoLinkingCollectionsBasicPageCollectionOrder': { kind: 'ENUM'; name: 'SeoLinkingCollectionsBasicPageCollectionOrder'; 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'; }; + '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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': { 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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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; } }; }; }; - '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; }; }; }; } }; }; }; - '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'; }; - 'ComponentHeroBannerTargetPage': { kind: 'UNION'; name: 'ComponentHeroBannerTargetPage'; fields: {}; possibleTypes: 'Page'; }; - 'ComponentInfoBlock': { kind: 'OBJECT'; name: 'ComponentInfoBlock'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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; }; } }; }; }; + '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; }; } }; '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: { 'concepts': { name: 'concepts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'TaxonomyConcept'; ofType: null; }; }; } }; 'tags': { name: 'tags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulTag'; ofType: null; }; }; } }; }; }; - 'ContentfulMetadataConceptsDescendantsFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsDescendantsFilter'; 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 }]; }; - 'ContentfulMetadataConceptsFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsFilter'; 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 }, { name: 'descendants'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsDescendantsFilter'; ofType: null; }; defaultValue: 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 }, { name: 'concepts_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'concepts'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataConceptsFilter'; 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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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' | 'BasicPage' | '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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; } }; 'basicPage': { name: 'basicPage'; type: { kind: 'OBJECT'; name: 'BasicPage'; ofType: null; } }; 'basicPageCollection': { name: 'basicPageCollection'; type: { kind: 'OBJECT'; name: 'BasicPageCollection'; 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' | 'BasicPageBodyResourcesBlock' | 'BasicPageBodyResourcesHyperlink' | 'BasicPageBodyResourcesInline' | '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '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: { 'basicPageCollection': { name: 'basicPageCollection'; type: { kind: 'OBJECT'; name: 'BasicPageCollection'; ofType: null; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; }; }; - 'SeoLinkingCollectionsBasicPageCollectionOrder': { name: 'SeoLinkingCollectionsBasicPageCollectionOrder'; 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'; }; - '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; }; } }; 'locale': { name: 'locale'; type: { 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 }]; }; - 'TaxonomyConcept': { kind: 'OBJECT'; name: 'TaxonomyConcept'; fields: { 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'TopicBusinessInfo': { kind: 'OBJECT'; name: 'TopicBusinessInfo'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: 'Accordion' | 'AccordionItem' | 'BasicPage' | 'ComponentCta' | 'ComponentDuplex' | 'ComponentForm' | 'ComponentHeroBanner' | 'ComponentInfoBlock' | 'ComponentProductTable' | 'ComponentQuote' | 'ComponentTextBlock' | 'EditorTest' | 'FooterMenu' | 'MenuGroup' | 'NavigationMenu' | 'NtAudience' | 'NtExperience' | 'Page' | 'Seo' | 'TopicBusinessInfo' | 'TopicPerson' | 'TopicProduct' | 'TopicProductFeature'; }; + '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'; }; + '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 }]; }; + '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; }; } }; }; }; + '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'; }; + '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 }]; }; + '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'; }; + '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'; }; + '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'; }; + 'BasicPageFilter': { kind: 'INPUT_OBJECT'; name: 'BasicPageFilter'; inputFields: [{ name: 'seo'; type: { kind: 'INPUT_OBJECT'; name: 'cfSeoNestedFilter'; 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: '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: 'BasicPageFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BasicPageFilter'; ofType: null; }; }; defaultValue: null }]; }; + 'BasicPageOrder': { kind: 'ENUM'; name: 'BasicPageOrder'; 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'; }; + '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 }]; }; - '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 }]; }; + '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'; }; + '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'; }; + '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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; } }; '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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 }]; }; - '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 }]; }; + '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'; }; + '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'; }; + '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'; }; + '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'; }; + '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'; }; }; }; From 9fc4f1aa887d052ccc577a2ed72a7cf7a971eab1 Mon Sep 17 00:00:00 2001 From: Andrei Tipa Date: Mon, 21 Oct 2024 17:40:13 -0600 Subject: [PATCH 3/3] feat(demo): Adjust image styles. --- components/ui/topic-business-info/topic-business-info.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ui/topic-business-info/topic-business-info.tsx b/components/ui/topic-business-info/topic-business-info.tsx index 89361b0..b41a754 100644 --- a/components/ui/topic-business-info/topic-business-info.tsx +++ b/components/ui/topic-business-info/topic-business-info.tsx @@ -21,7 +21,7 @@ export const TopicBusinessInfo = ({
{featuredImage && ( -
+
{featuredImage.alt}
)}