From b4ba9d574286ac29a2e3318a957ebd70a4050894 Mon Sep 17 00:00:00 2001 From: Victor Pavlov Date: Thu, 29 Feb 2024 15:22:28 +0200 Subject: [PATCH] feat(components): Add add Duplex component basement. --- components/duplex-ctf/duplex-ctf-client.tsx | 33 + components/duplex-ctf/duplex-ctf.tsx | 8 +- components/ui/duplex/duplex.stories.tsx | 62 + components/ui/duplex/duplex.tsx | 70 + components/ui/duplex/index.ts | 1 + gql/fragment-masking.ts | 1 + gql/gql.ts | 4 +- gql/graphql.schema.json | 15176 +++++++++++------- gql/graphql.ts | 704 +- gql/schema.graphql | 487 +- 10 files changed, 10300 insertions(+), 6246 deletions(-) create mode 100644 components/duplex-ctf/duplex-ctf-client.tsx create mode 100644 components/ui/duplex/duplex.stories.tsx create mode 100644 components/ui/duplex/duplex.tsx create mode 100644 components/ui/duplex/index.ts diff --git a/components/duplex-ctf/duplex-ctf-client.tsx b/components/duplex-ctf/duplex-ctf-client.tsx new file mode 100644 index 0000000..69a9460 --- /dev/null +++ b/components/duplex-ctf/duplex-ctf-client.tsx @@ -0,0 +1,33 @@ +'use client'; + +import { Duplex } from '../ui/duplex'; +import { ComponentDuplexFieldsFragment } from '#/gql/graphql'; +import { RichTextCtf } from '#/components/rich-text-ctf'; +import { getPageLinkChildProps } from '../page'; +import { useComponentPreview } from '../hooks/use-component-preview'; +import { getImageChildProps } from '../image-ctf'; + +export const DuplexCtfClient: React.FC<{ + data: ComponentDuplexFieldsFragment; +}> = (props) => { + const { data: originalData } = props; + const { data, addAttributes } = + useComponentPreview(originalData); + + return ( + } + image={ + data.image && + getImageChildProps({ + data: data.image, + priority: true, + sizes: "100vw", + }) + } + imageAlignment={data.containerLayout ? 'left' : 'right'} + addAttributes={addAttributes} + /> + ); +}; diff --git a/components/duplex-ctf/duplex-ctf.tsx b/components/duplex-ctf/duplex-ctf.tsx index 931a922..e7a328d 100644 --- a/components/duplex-ctf/duplex-ctf.tsx +++ b/components/duplex-ctf/duplex-ctf.tsx @@ -1,4 +1,5 @@ -import { FragmentType, getFragmentData, graphql } from "#/gql"; +import { FragmentType, getFragmentData, graphql } from '#/gql'; +import { DuplexCtfClient } from './duplex-ctf-client'; export const ComponentDuplexFieldsFragment = graphql(/* GraphQL */ ` fragment ComponentDuplexFields on ComponentDuplex { @@ -15,10 +16,11 @@ export const ComponentDuplexFieldsFragment = graphql(/* GraphQL */ ` ...PageLinkFields } image { - url + ...AssetFields } imageStyle colorPalette + containerLayout } `); @@ -28,5 +30,5 @@ export type DuplexProps = { export const DuplexCtf: React.FC = (props) => { const data = getFragmentData(ComponentDuplexFieldsFragment, props.data); - return
{JSON.stringify(data, null, 2)}
; + return ; }; diff --git a/components/ui/duplex/duplex.stories.tsx b/components/ui/duplex/duplex.stories.tsx new file mode 100644 index 0000000..601705f --- /dev/null +++ b/components/ui/duplex/duplex.stories.tsx @@ -0,0 +1,62 @@ +import type { Meta, StoryObj } from '@storybook/react'; + +import { Duplex } from './duplex'; + +// More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction#default-export +const meta = { + title: 'Components/Duplex', + component: Duplex, + parameters: { + // Optional parameter to center the component in the Canvas. More info: https://storybook.js.org/docs/react/configure/story-layout + layout: 'centered', + }, + // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/react/writing-docs/autodocs + tags: ['autodocs'], + // More on argTypes: https://storybook.js.org/docs/react/api/argtypes + argTypes: { + headline: { control: 'text' }, + bodyText: { control: 'text' }, + image: { control: 'object' }, + }, +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +const defaultArgs = { + headline: 'With great power comes great responsibility', + image: { + src: 'https://picsum.photos/seed/picsum/1920/1080', + alt: 'Placeholder image', + }, + bodyText: + 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec auctor, libero eget ultricies aliquam, nisl nunc ultricies nunc, vitae ultricies nisl nunc eget nunc. Donec auctor, libero eget ultricies aliquam, nisl nunc ultricies nunc, vitae ultricies nisl nunc eget nunc.', +}; + +// More on writing stories with args: https://storybook.js.org/docs/react/writing-stories/args +export const Default: Story = { + args: { + ...defaultArgs, + }, +}; + +export const WithCta: Story = { + args: { + ...defaultArgs, + cta: { children: 'Learn more', href: 'https://google.com' }, + }, +}; + +export const WithoutHeadline: Story = { + args: { + ...defaultArgs, + headline: '', + }, +}; + +export const ImageRight: Story = { + args: { + ...defaultArgs, + imageAlignment: 'right', + }, +}; diff --git a/components/ui/duplex/duplex.tsx b/components/ui/duplex/duplex.tsx new file mode 100644 index 0000000..00a2bf3 --- /dev/null +++ b/components/ui/duplex/duplex.tsx @@ -0,0 +1,70 @@ +import { cn } from '#/lib/utils'; +import { cva, type VariantProps } from 'class-variance-authority'; +import { ReactNode } from 'react'; +import { Button } from '../button'; +import { Image, ImageProps } from '../image'; +import { Link, LinkProps } from '../link'; + +const duplexVariants = cva('', { + variants: { + variant: { + default: 'bg-white', + }, + imageAlignment: { + left: 'flex-row', + right: 'flex-row-reverse', + }, + }, + defaultVariants: { + variant: 'default', + imageAlignment: 'left', + }, +}); + +interface DuplexProps extends VariantProps { + headline?: string | null; + bodyText?: ReactNode; + image?: ImageProps | null; + cta?: LinkProps | null; + addAttributes?: (name: string) => object | null; +} + +export function Duplex(props: DuplexProps) { + const { + image, + headline, + bodyText, + cta, + variant, + imageAlignment, + addAttributes = () => ({}), // Default to no-op. + } = props; + + return ( +
+
+ {image && ( +
+ {image.alt} +
+ )} +
+ {headline &&

{headline}

} + {bodyText &&
{bodyText}
} + {cta?.href && cta?.children && ( +
+ +
+ )} +
+
+
+ ); +} diff --git a/components/ui/duplex/index.ts b/components/ui/duplex/index.ts new file mode 100644 index 0000000..8e236cc --- /dev/null +++ b/components/ui/duplex/index.ts @@ -0,0 +1 @@ +export * from './duplex'; diff --git a/gql/fragment-masking.ts b/gql/fragment-masking.ts index 47151ff..48ecbde 100644 --- a/gql/fragment-masking.ts +++ b/gql/fragment-masking.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ import { ResultOf, DocumentTypeDecoration, TypedDocumentNode } from '@graphql-typed-document-node/core'; import { FragmentDefinitionNode } from 'graphql'; import { Incremental } from './graphql'; diff --git a/gql/gql.ts b/gql/gql.ts index 45efbb2..34bba36 100644 --- a/gql/gql.ts +++ b/gql/gql.ts @@ -16,7 +16,7 @@ const documents = { "\n query PageQuery($slug: String, $locale: String, $preview: Boolean) {\n pageCollection(\n locale: $locale\n preview: $preview\n limit: 1\n where: { slug: $slug }\n ) {\n items {\n topSectionCollection(limit: 10) {\n items {\n ...ComponentHeroBannerFields\n ...ComponentDuplexFields\n }\n }\n }\n }\n }\n ": types.PageQueryDocument, "\n query Layout($locale: String, $preview: Boolean) {\n navigationMenuCollection(locale: $locale, preview: $preview, limit: 1) {\n ...NavigationFields\n }\n }\n ": types.LayoutDocument, "\n fragment AssetFields on Asset {\n __typename\n sys {\n id\n }\n contentType\n title\n url\n width\n height\n description\n }\n": types.AssetFieldsFragmentDoc, - "\n fragment ComponentDuplexFields on ComponentDuplex {\n __typename\n sys {\n id\n }\n headline\n bodyText {\n json\n }\n ctaText\n targetPage {\n ...PageLinkFields\n }\n image {\n url\n }\n imageStyle\n colorPalette\n }\n": types.ComponentDuplexFieldsFragmentDoc, + "\n fragment ComponentDuplexFields on ComponentDuplex {\n __typename\n sys {\n id\n }\n headline\n bodyText {\n json\n }\n ctaText\n targetPage {\n ...PageLinkFields\n }\n image {\n ...AssetFields\n }\n imageStyle\n colorPalette\n containerLayout\n }\n": types.ComponentDuplexFieldsFragmentDoc, "\n fragment ComponentHeroBannerFields on ComponentHeroBanner {\n __typename\n sys {\n id\n }\n headline\n bodyText {\n json\n links {\n assets {\n block {\n ...AssetFields\n }\n }\n }\n }\n ctaText\n targetPage {\n ...PageLinkFields\n }\n image {\n ...AssetFields\n }\n imageStyle\n heroSize\n colorPalette\n }\n": types.ComponentHeroBannerFieldsFragmentDoc, "\n fragment MenuGroupFields on MenuGroupFeaturedPagesCollection {\n items {\n ...PageLinkFields\n }\n }\n": types.MenuGroupFieldsFragmentDoc, "\n fragment NavigationFields on NavigationMenuCollection {\n items {\n menuItemsCollection {\n items {\n __typename\n sys {\n id\n }\n groupName\n link: groupLink {\n ...PageLinkFields\n }\n children: featuredPagesCollection {\n ...MenuGroupFields\n }\n }\n }\n }\n }\n": types.NavigationFieldsFragmentDoc, @@ -53,7 +53,7 @@ export function graphql(source: "\n fragment AssetFields on Asset {\n __type /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n fragment ComponentDuplexFields on ComponentDuplex {\n __typename\n sys {\n id\n }\n headline\n bodyText {\n json\n }\n ctaText\n targetPage {\n ...PageLinkFields\n }\n image {\n url\n }\n imageStyle\n colorPalette\n }\n"): (typeof documents)["\n fragment ComponentDuplexFields on ComponentDuplex {\n __typename\n sys {\n id\n }\n headline\n bodyText {\n json\n }\n ctaText\n targetPage {\n ...PageLinkFields\n }\n image {\n url\n }\n imageStyle\n colorPalette\n }\n"]; +export function graphql(source: "\n fragment ComponentDuplexFields on ComponentDuplex {\n __typename\n sys {\n id\n }\n headline\n bodyText {\n json\n }\n ctaText\n targetPage {\n ...PageLinkFields\n }\n image {\n ...AssetFields\n }\n imageStyle\n colorPalette\n containerLayout\n }\n"): (typeof documents)["\n fragment ComponentDuplexFields on ComponentDuplex {\n __typename\n sys {\n id\n }\n headline\n bodyText {\n json\n }\n ctaText\n targetPage {\n ...PageLinkFields\n }\n image {\n ...AssetFields\n }\n imageStyle\n colorPalette\n containerLayout\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ diff --git a/gql/graphql.schema.json b/gql/graphql.schema.json index 9e68674..95ed934 100644 --- a/gql/graphql.schema.json +++ b/gql/graphql.schema.json @@ -1277,22 +1277,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AssetLinkingCollectionsComponentDuplexCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "preview", "description": null, @@ -1354,22 +1338,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AssetLinkingCollectionsComponentHeroBannerCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "preview", "description": null, @@ -1431,22 +1399,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AssetLinkingCollectionsComponentInfoBlockCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "preview", "description": null, @@ -1508,22 +1460,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AssetLinkingCollectionsComponentQuoteCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "preview", "description": null, @@ -1646,22 +1582,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AssetLinkingCollectionsSeoCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "preview", "description": null, @@ -1723,22 +1643,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AssetLinkingCollectionsTopicBusinessInfoCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "preview", "description": null, @@ -1800,22 +1704,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AssetLinkingCollectionsTopicPersonCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "preview", "description": null, @@ -1877,22 +1765,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AssetLinkingCollectionsTopicProductCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "preview", "description": null, @@ -1934,128 +1806,128 @@ }, { "kind": "ENUM", - "name": "AssetLinkingCollectionsComponentDuplexCollectionOrder", + "name": "AssetOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "colorPalette_ASC", + "name": "contentType_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_DESC", + "name": "contentType_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "containerLayout_ASC", + "name": "fileName_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "containerLayout_DESC", + "name": "fileName_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_ASC", + "name": "height_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_DESC", + "name": "height_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_ASC", + "name": "size_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_DESC", + "name": "size_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "imageStyle_ASC", + "name": "sys_firstPublishedAt_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "imageStyle_DESC", + "name": "sys_firstPublishedAt_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_ASC", + "name": "sys_id_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_DESC", + "name": "sys_id_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_firstPublishedAt_ASC", + "name": "sys_publishedAt_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_firstPublishedAt_DESC", + "name": "sys_publishedAt_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_ASC", + "name": "sys_publishedVersion_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_DESC", + "name": "sys_publishedVersion_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_ASC", + "name": "url_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_DESC", + "name": "url_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_ASC", + "name": "width_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", + "name": "width_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -2064,674 +1936,1086 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "AssetLinkingCollectionsComponentHeroBannerCollectionOrder", - "description": null, + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", "fields": null, "inputFields": null, "interfaces": null, - "enumValues": [ + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentCta", + "description": "Full-width container for creating visually distinct Calls-to-Action (CTAs) [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentCta)", + "fields": [ { - "name": "colorPalette_ASC", + "name": "colorPalette", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_DESC", + "name": "contentfulMetadata", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_ASC", + "name": "ctaText", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_DESC", + "name": "headline", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_ASC", + "name": "internalName", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_DESC", + "name": "linkedFrom", "description": null, + "args": [ + { + "name": "allowedLocales", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentCtaLinkingCollections", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "heroSize_ASC", + "name": "subline", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentCtaSubline", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "heroSize_DESC", + "name": "sys", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sys", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "imageStyle_ASC", + "name": "targetPage", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "UNION", + "name": "ComponentCtaTargetPage", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "imageStyle_DESC", + "name": "urlParameters", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "internalName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentCtaCollection", + "description": null, + "fields": [ { - "name": "internalName_DESC", + "name": "items", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentCta", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_firstPublishedAt_ASC", + "name": "limit", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_firstPublishedAt_DESC", + "name": "skip", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_ASC", + "name": "total", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ComponentCtaFilter", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sys_id_DESC", + "name": "AND", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentCtaFilter", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_ASC", + "name": "OR", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentCtaFilter", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_DESC", + "name": "colorPalette", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_ASC", + "name": "colorPalette_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AssetLinkingCollectionsComponentInfoBlockCollectionOrder", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "colorPalette_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "colorPalette_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "headline_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "headline_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subline_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subline_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_DESC", + "name": "colorPalette_exists", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_ASC", + "name": "colorPalette_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_DESC", + "name": "colorPalette_not", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_ASC", + "name": "colorPalette_not_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_DESC", + "name": "colorPalette_not_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_ASC", + "name": "contentfulMetadata", "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AssetLinkingCollectionsComponentQuoteCollectionOrder", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "colorPalette_ASC", + "name": "ctaText", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_DESC", + "name": "ctaText_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "imagePosition_ASC", + "name": "ctaText_exists", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "imagePosition_DESC", + "name": "ctaText_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_ASC", + "name": "ctaText_not", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_DESC", + "name": "ctaText_not_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quoteAlignment_ASC", + "name": "ctaText_not_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quoteAlignment_DESC", + "name": "headline", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_firstPublishedAt_ASC", + "name": "headline_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_firstPublishedAt_DESC", + "name": "headline_exists", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_ASC", + "name": "headline_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_DESC", + "name": "headline_not", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_ASC", + "name": "headline_not_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_DESC", + "name": "headline_not_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_ASC", + "name": "internalName", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AssetLinkingCollectionsSeoCollectionOrder", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "description_ASC", + "name": "internalName_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description_DESC", + "name": "internalName_exists", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_ASC", + "name": "internalName_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_DESC", + "name": "internalName_not", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "noFollow_ASC", + "name": "internalName_not_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "noFollow_DESC", + "name": "internalName_not_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "noIndex_ASC", + "name": "subline_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "noIndex_DESC", + "name": "subline_exists", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_firstPublishedAt_ASC", + "name": "subline_not_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_firstPublishedAt_DESC", + "name": "sys", "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SysFilter", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_ASC", + "name": "targetPage_exists", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_DESC", + "name": "urlParameters", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_ASC", + "name": "urlParameters_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_DESC", + "name": "urlParameters_exists", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_ASC", + "name": "urlParameters_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", + "name": "urlParameters_not", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "title_ASC", + "name": "urlParameters_not_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "title_DESC", + "name": "urlParameters_not_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "AssetLinkingCollectionsTopicBusinessInfoCollectionOrder", + "kind": "OBJECT", + "name": "ComponentCtaLinkingCollections", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "internalName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "fields": [ { - "name": "sys_id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedVersion_ASC", + "name": "entryCollection", "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "EntryCollection", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", + "name": "pageCollection", "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentCtaLinkingCollectionsPageCollectionOrder", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PageCollection", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AssetLinkingCollectionsTopicPersonCollectionOrder", - "description": null, - "fields": null, "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "cardStyle_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cardStyle_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "location_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "location_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedVersion_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedVersion_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "website_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "website_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "AssetLinkingCollectionsTopicProductCollectionOrder", + "name": "ComponentCtaLinkingCollectionsPageCollectionOrder", "description": null, "fields": null, "inputFields": null, @@ -2750,25 +3034,25 @@ "deprecationReason": null }, { - "name": "name_ASC", + "name": "pageName_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_DESC", + "name": "pageName_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price_ASC", + "name": "slug_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "price_DESC", + "name": "slug_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -2826,56 +3110,56 @@ }, { "kind": "ENUM", - "name": "AssetOrder", + "name": "ComponentCtaOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "contentType_ASC", + "name": "colorPalette_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "contentType_DESC", + "name": "colorPalette_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fileName_ASC", + "name": "ctaText_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fileName_DESC", + "name": "ctaText_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "height_ASC", + "name": "headline_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "height_DESC", + "name": "headline_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "size_ASC", + "name": "internalName_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "size_DESC", + "name": "internalName_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -2929,178 +3213,359 @@ "deprecationReason": null }, { - "name": "url_ASC", + "name": "urlParameters_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "url_DESC", + "name": "urlParameters_DESC", "description": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentCtaSubline", + "description": null, + "fields": [ { - "name": "width_ASC", + "name": "json", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "width_DESC", + "name": "links", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentCtaSublineLinks", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null } ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, "inputFields": null, - "interfaces": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ComponentCta", - "description": "Full-width container for creating visually distinct Calls-to-Action (CTAs) [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentCta)", + "name": "ComponentCtaSublineAssets", + "description": null, "fields": [ { - "name": "colorPalette", + "name": "block", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "contentfulMetadata", + "name": "hyperlink", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ContentfulMetadata", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentCtaSublineEntries", + "description": null, + "fields": [ { - "name": "ctaText", + "name": "block", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline", + "name": "hyperlink", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName", + "name": "inline", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentCtaSublineLinks", + "description": null, + "fields": [ + { + "name": "assets", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentCtaSublineAssets", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkedFrom", + "name": "entries", "description": null, - "args": [ - { - "name": "allowedLocales", - "description": null, - "type": { - "kind": "LIST", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentCtaSublineEntries", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resources", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentCtaSublineResources", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentCtaSublineResources", + "description": null, + "fields": [ + { + "name": "block", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hyperlink", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inline", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "UNION", + "name": "ComponentCtaTargetPage", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Page", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "ComponentDuplex", + "description": "Full-width container for displaying side-by-side image and copy, includes multiple layout options [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentDuplex)", + "fields": [ + { + "name": "bodyText", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -3109,14 +3574,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentCtaLinkingCollections", + "name": "ComponentDuplexBodyText", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "subline", + "name": "colorPalette", "description": null, "args": [ { @@ -3133,15 +3598,40 @@ } ], "type": { - "kind": "OBJECT", - "name": "ComponentCtaSubline", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys", + "name": "containerLayout", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentfulMetadata", "description": null, "args": [], "type": { @@ -3149,7 +3639,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Sys", + "name": "ContentfulMetadata", "ofType": null } }, @@ -3157,7 +3647,57 @@ "deprecationReason": null }, { - "name": "targetPage", + "name": "ctaText", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headline", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "image", "description": null, "args": [ { @@ -3186,15 +3726,40 @@ } ], "type": { - "kind": "UNION", - "name": "ComponentCtaTargetPage", + "kind": "OBJECT", + "name": "Asset", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "urlParameters", + "name": "imageStyle", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName", "description": null, "args": [ { @@ -3217,6 +3782,88 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "linkedFrom", + "description": null, + "args": [ + { + "name": "allowedLocales", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentDuplexLinkingCollections", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sys", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetPage", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "UNION", + "name": "ComponentDuplexTargetPage", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -3232,72 +3879,87 @@ }, { "kind": "OBJECT", - "name": "ComponentCtaCollection", + "name": "ComponentDuplexBodyText", "description": null, "fields": [ { - "name": "items", + "name": "json", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentCta", - "ofType": null - } + "kind": "SCALAR", + "name": "JSON", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "limit", + "name": "links", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "ComponentDuplexBodyTextLinks", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentDuplexBodyTextAssets", + "description": null, + "fields": [ { - "name": "skip", + "name": "block", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "total", + "name": "hyperlink", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } } }, "isDeprecated": false, @@ -3310,128 +3972,328 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ComponentCtaFilter", + "kind": "OBJECT", + "name": "ComponentDuplexBodyTextEntries", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "AND", + "name": "block", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentCtaFilter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentCtaFilter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette", + "name": "inline", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentDuplexBodyTextLinks", + "description": null, + "fields": [ { - "name": "colorPalette_contains", + "name": "assets", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentDuplexBodyTextAssets", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_exists", + "name": "entries", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentDuplexBodyTextEntries", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_in", + "name": "resources", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ComponentDuplexBodyTextResources", "ofType": null } }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentDuplexBodyTextResources", + "description": null, + "fields": [ + { + "name": "block", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_not", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_not_contains", + "name": "inline", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentDuplexCollection", + "description": null, + "fields": [ + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentDuplex", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ComponentDuplexFilter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentDuplexFilter", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_not_in", + "name": "OR", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ComponentDuplexFilter", "ofType": null } }, @@ -3440,11 +4302,11 @@ "deprecationReason": null }, { - "name": "contentfulMetadata", + "name": "bodyText_contains", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -3452,7 +4314,19 @@ "deprecationReason": null }, { - "name": "ctaText", + "name": "bodyText_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bodyText_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -3464,7 +4338,7 @@ "deprecationReason": null }, { - "name": "ctaText_contains", + "name": "colorPalette", "description": null, "type": { "kind": "SCALAR", @@ -3476,7 +4350,19 @@ "deprecationReason": null }, { - "name": "ctaText_exists", + "name": "colorPalette_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "colorPalette_exists", "description": null, "type": { "kind": "SCALAR", @@ -3488,7 +4374,7 @@ "deprecationReason": null }, { - "name": "ctaText_in", + "name": "colorPalette_in", "description": null, "type": { "kind": "LIST", @@ -3504,7 +4390,7 @@ "deprecationReason": null }, { - "name": "ctaText_not", + "name": "colorPalette_not", "description": null, "type": { "kind": "SCALAR", @@ -3516,7 +4402,7 @@ "deprecationReason": null }, { - "name": "ctaText_not_contains", + "name": "colorPalette_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -3528,7 +4414,7 @@ "deprecationReason": null }, { - "name": "ctaText_not_in", + "name": "colorPalette_not_in", "description": null, "type": { "kind": "LIST", @@ -3544,7 +4430,55 @@ "deprecationReason": null }, { - "name": "headline", + "name": "containerLayout", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "containerLayout_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "containerLayout_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentfulMetadata", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctaText", "description": null, "type": { "kind": "SCALAR", @@ -3556,7 +4490,7 @@ "deprecationReason": null }, { - "name": "headline_contains", + "name": "ctaText_contains", "description": null, "type": { "kind": "SCALAR", @@ -3568,7 +4502,7 @@ "deprecationReason": null }, { - "name": "headline_exists", + "name": "ctaText_exists", "description": null, "type": { "kind": "SCALAR", @@ -3580,7 +4514,7 @@ "deprecationReason": null }, { - "name": "headline_in", + "name": "ctaText_in", "description": null, "type": { "kind": "LIST", @@ -3596,7 +4530,7 @@ "deprecationReason": null }, { - "name": "headline_not", + "name": "ctaText_not", "description": null, "type": { "kind": "SCALAR", @@ -3608,7 +4542,7 @@ "deprecationReason": null }, { - "name": "headline_not_contains", + "name": "ctaText_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -3620,7 +4554,7 @@ "deprecationReason": null }, { - "name": "headline_not_in", + "name": "ctaText_not_in", "description": null, "type": { "kind": "LIST", @@ -3636,7 +4570,7 @@ "deprecationReason": null }, { - "name": "internalName", + "name": "headline", "description": null, "type": { "kind": "SCALAR", @@ -3648,7 +4582,7 @@ "deprecationReason": null }, { - "name": "internalName_contains", + "name": "headline_contains", "description": null, "type": { "kind": "SCALAR", @@ -3660,7 +4594,7 @@ "deprecationReason": null }, { - "name": "internalName_exists", + "name": "headline_exists", "description": null, "type": { "kind": "SCALAR", @@ -3672,7 +4606,7 @@ "deprecationReason": null }, { - "name": "internalName_in", + "name": "headline_in", "description": null, "type": { "kind": "LIST", @@ -3688,7 +4622,7 @@ "deprecationReason": null }, { - "name": "internalName_not", + "name": "headline_not", "description": null, "type": { "kind": "SCALAR", @@ -3700,7 +4634,7 @@ "deprecationReason": null }, { - "name": "internalName_not_contains", + "name": "headline_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -3712,7 +4646,7 @@ "deprecationReason": null }, { - "name": "internalName_not_in", + "name": "headline_not_in", "description": null, "type": { "kind": "LIST", @@ -3728,11 +4662,11 @@ "deprecationReason": null }, { - "name": "subline_contains", + "name": "imageStyle", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -3740,7 +4674,7 @@ "deprecationReason": null }, { - "name": "subline_exists", + "name": "imageStyle_exists", "description": null, "type": { "kind": "SCALAR", @@ -3752,23 +4686,11 @@ "deprecationReason": null }, { - "name": "subline_not_contains", + "name": "imageStyle_not", "description": null, "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SysFilter", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -3776,7 +4698,7 @@ "deprecationReason": null }, { - "name": "targetPage_exists", + "name": "image_exists", "description": null, "type": { "kind": "SCALAR", @@ -3788,7 +4710,7 @@ "deprecationReason": null }, { - "name": "urlParameters", + "name": "internalName", "description": null, "type": { "kind": "SCALAR", @@ -3800,7 +4722,7 @@ "deprecationReason": null }, { - "name": "urlParameters_contains", + "name": "internalName_contains", "description": null, "type": { "kind": "SCALAR", @@ -3812,7 +4734,7 @@ "deprecationReason": null }, { - "name": "urlParameters_exists", + "name": "internalName_exists", "description": null, "type": { "kind": "SCALAR", @@ -3824,7 +4746,7 @@ "deprecationReason": null }, { - "name": "urlParameters_in", + "name": "internalName_in", "description": null, "type": { "kind": "LIST", @@ -3840,7 +4762,7 @@ "deprecationReason": null }, { - "name": "urlParameters_not", + "name": "internalName_not", "description": null, "type": { "kind": "SCALAR", @@ -3852,7 +4774,7 @@ "deprecationReason": null }, { - "name": "urlParameters_not_contains", + "name": "internalName_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -3864,7 +4786,7 @@ "deprecationReason": null }, { - "name": "urlParameters_not_in", + "name": "internalName_not_in", "description": null, "type": { "kind": "LIST", @@ -3878,6 +4800,30 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "sys", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SysFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetPage_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "interfaces": null, @@ -3886,7 +4832,7 @@ }, { "kind": "OBJECT", - "name": "ComponentCtaLinkingCollections", + "name": "ComponentDuplexLinkingCollections", "description": null, "fields": [ { @@ -3986,7 +4932,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentCtaLinkingCollectionsPageCollectionOrder", + "name": "ComponentDuplexLinkingCollectionsPageCollectionOrder", "ofType": null } }, @@ -4035,7 +4981,7 @@ }, { "kind": "ENUM", - "name": "ComponentCtaLinkingCollectionsPageCollectionOrder", + "name": "ComponentDuplexLinkingCollectionsPageCollectionOrder", "description": null, "fields": null, "inputFields": null, @@ -4130,7 +5076,7 @@ }, { "kind": "ENUM", - "name": "ComponentCtaOrder", + "name": "ComponentDuplexOrder", "description": null, "fields": null, "inputFields": null, @@ -4148,6 +5094,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "containerLayout_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "containerLayout_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "ctaText_ASC", "description": null, @@ -4172,6 +5130,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "imageStyle_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageStyle_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "internalName_ASC", "description": null, @@ -4231,284 +5201,13 @@ "description": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "urlParameters_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "urlParameters_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null } ], "possibleTypes": null }, - { - "kind": "OBJECT", - "name": "ComponentCtaSubline", - "description": null, - "fields": [ - { - "name": "json", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "links", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentCtaSublineLinks", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentCtaSublineAssets", - "description": null, - "fields": [ - { - "name": "block", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hyperlink", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentCtaSublineEntries", - "description": null, - "fields": [ - { - "name": "block", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hyperlink", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inline", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentCtaSublineLinks", - "description": null, - "fields": [ - { - "name": "assets", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentCtaSublineAssets", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "entries", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentCtaSublineEntries", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resources", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentCtaSublineResources", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentCtaSublineResources", - "description": null, - "fields": [ - { - "name": "block", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceLink", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "UNION", - "name": "ComponentCtaTargetPage", + "name": "ComponentDuplexTargetPage", "description": null, "fields": null, "inputFields": null, @@ -4524,8 +5223,8 @@ }, { "kind": "OBJECT", - "name": "ComponentDuplex", - "description": "Full-width container for displaying side-by-side image and copy, includes multiple layout options [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentDuplex)", + "name": "ComponentHeroBanner", + "description": "Full-width container for displaying images and snappy copy; can include an optional CTA [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentHeroBanner)", "fields": [ { "name": "bodyText", @@ -4546,7 +5245,7 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentDuplexBodyText", + "name": "ComponentHeroBannerBodyText", "ofType": null }, "isDeprecated": false, @@ -4578,7 +5277,23 @@ "deprecationReason": null }, { - "name": "containerLayout", + "name": "contentfulMetadata", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctaText", "description": null, "args": [ { @@ -4596,30 +5311,14 @@ ], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "contentfulMetadata", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ContentfulMetadata", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ctaText", + "name": "headline", "description": null, "args": [ { @@ -4644,7 +5343,7 @@ "deprecationReason": null }, { - "name": "headline", + "name": "heroSize", "description": null, "args": [ { @@ -4662,7 +5361,7 @@ ], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, @@ -4778,7 +5477,7 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentDuplexLinkingCollections", + "name": "ComponentHeroBannerLinkingCollections", "ofType": null }, "isDeprecated": false, @@ -4831,7 +5530,7 @@ ], "type": { "kind": "UNION", - "name": "ComponentDuplexTargetPage", + "name": "ComponentHeroBannerTargetPage", "ofType": null }, "isDeprecated": false, @@ -4851,7 +5550,7 @@ }, { "kind": "OBJECT", - "name": "ComponentDuplexBodyText", + "name": "ComponentHeroBannerBodyText", "description": null, "fields": [ { @@ -4879,7 +5578,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentDuplexBodyTextLinks", + "name": "ComponentHeroBannerBodyTextLinks", "ofType": null } }, @@ -4894,7 +5593,7 @@ }, { "kind": "OBJECT", - "name": "ComponentDuplexBodyTextAssets", + "name": "ComponentHeroBannerBodyTextAssets", "description": null, "fields": [ { @@ -4945,7 +5644,7 @@ }, { "kind": "OBJECT", - "name": "ComponentDuplexBodyTextEntries", + "name": "ComponentHeroBannerBodyTextEntries", "description": null, "fields": [ { @@ -5016,7 +5715,7 @@ }, { "kind": "OBJECT", - "name": "ComponentDuplexBodyTextLinks", + "name": "ComponentHeroBannerBodyTextLinks", "description": null, "fields": [ { @@ -5028,7 +5727,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentDuplexBodyTextAssets", + "name": "ComponentHeroBannerBodyTextAssets", "ofType": null } }, @@ -5044,7 +5743,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentDuplexBodyTextEntries", + "name": "ComponentHeroBannerBodyTextEntries", "ofType": null } }, @@ -5060,7 +5759,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentDuplexBodyTextResources", + "name": "ComponentHeroBannerBodyTextResources", "ofType": null } }, @@ -5075,7 +5774,7 @@ }, { "kind": "OBJECT", - "name": "ComponentDuplexBodyTextResources", + "name": "ComponentHeroBannerBodyTextResources", "description": null, "fields": [ { @@ -5101,6 +5800,54 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "hyperlink", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inline", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -5110,7 +5857,7 @@ }, { "kind": "OBJECT", - "name": "ComponentDuplexCollection", + "name": "ComponentHeroBannerCollection", "description": null, "fields": [ { @@ -5125,7 +5872,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentDuplex", + "name": "ComponentHeroBanner", "ofType": null } } @@ -5189,7 +5936,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ComponentDuplexFilter", + "name": "ComponentHeroBannerFilter", "description": null, "fields": null, "inputFields": [ @@ -5201,7 +5948,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ComponentDuplexFilter", + "name": "ComponentHeroBannerFilter", "ofType": null } }, @@ -5217,7 +5964,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ComponentDuplexFilter", + "name": "ComponentHeroBannerFilter", "ofType": null } }, @@ -5353,42 +6100,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "containerLayout", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containerLayout_exists", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containerLayout_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "contentfulMetadata", "description": null, @@ -5585,6 +6296,42 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "heroSize", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "heroSize_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "heroSize_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "imageStyle", "description": null, @@ -5756,7 +6503,7 @@ }, { "kind": "OBJECT", - "name": "ComponentDuplexLinkingCollections", + "name": "ComponentHeroBannerLinkingCollections", "description": null, "fields": [ { @@ -5856,7 +6603,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentDuplexLinkingCollectionsPageCollectionOrder", + "name": "ComponentHeroBannerLinkingCollectionsPageCollectionOrder", "ofType": null } }, @@ -5905,7 +6652,7 @@ }, { "kind": "ENUM", - "name": "ComponentDuplexLinkingCollectionsPageCollectionOrder", + "name": "ComponentHeroBannerLinkingCollectionsPageCollectionOrder", "description": null, "fields": null, "inputFields": null, @@ -6000,7 +6747,7 @@ }, { "kind": "ENUM", - "name": "ComponentDuplexOrder", + "name": "ComponentHeroBannerOrder", "description": null, "fields": null, "inputFields": null, @@ -6019,37 +6766,37 @@ "deprecationReason": null }, { - "name": "containerLayout_ASC", + "name": "ctaText_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "containerLayout_DESC", + "name": "ctaText_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_ASC", + "name": "headline_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_DESC", + "name": "headline_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_ASC", + "name": "heroSize_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_DESC", + "name": "heroSize_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -6131,7 +6878,7 @@ }, { "kind": "UNION", - "name": "ComponentDuplexTargetPage", + "name": "ComponentHeroBannerTargetPage", "description": null, "fields": null, "inputFields": null, @@ -6147,11 +6894,11 @@ }, { "kind": "OBJECT", - "name": "ComponentHeroBanner", - "description": "Full-width container for displaying images and snappy copy; can include an optional CTA [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentHeroBanner)", + "name": "ComponentInfoBlock", + "description": "Full-width container for displaying short bits of generic information with optional icons/visuals [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentInfoBlock)", "fields": [ { - "name": "bodyText", + "name": "block1Body", "description": null, "args": [ { @@ -6169,14 +6916,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentHeroBannerBodyText", + "name": "ComponentInfoBlockBlock1Body", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette", + "name": "block1Image", "description": null, "args": [ { @@ -6190,34 +6937,154 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Asset", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "contentfulMetadata", + "name": "block2Body", "description": null, - "args": [], + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ContentfulMetadata", - "ofType": null + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock2Body", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "block2Image", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText", + "name": "block3Body", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock3Body", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "block3Image", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "colorPalette", "description": null, "args": [ { @@ -6241,6 +7108,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "contentfulMetadata", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "headline", "description": null, @@ -6267,7 +7150,7 @@ "deprecationReason": null }, { - "name": "heroSize", + "name": "internalName", "description": null, "args": [ { @@ -6285,35 +7168,27 @@ ], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "image", + "name": "linkedFrom", "description": null, "args": [ { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preview", + "name": "allowedLocales", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -6322,39 +7197,14 @@ ], "type": { "kind": "OBJECT", - "name": "Asset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imageStyle", - "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "ComponentInfoBlockLinkingCollections", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName", + "name": "subline", "description": null, "args": [ { @@ -6378,35 +7228,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "linkedFrom", - "description": null, - "args": [ - { - "name": "allowedLocales", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ComponentHeroBannerLinkingCollections", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "sys", "description": null, @@ -6422,43 +7243,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "targetPage", - "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "UNION", - "name": "ComponentHeroBannerTargetPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -6474,7 +7258,7 @@ }, { "kind": "OBJECT", - "name": "ComponentHeroBannerBodyText", + "name": "ComponentInfoBlockBlock1Body", "description": null, "fields": [ { @@ -6502,7 +7286,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentHeroBannerBodyTextLinks", + "name": "ComponentInfoBlockBlock1BodyLinks", "ofType": null } }, @@ -6517,7 +7301,7 @@ }, { "kind": "OBJECT", - "name": "ComponentHeroBannerBodyTextAssets", + "name": "ComponentInfoBlockBlock1BodyAssets", "description": null, "fields": [ { @@ -6568,7 +7352,7 @@ }, { "kind": "OBJECT", - "name": "ComponentHeroBannerBodyTextEntries", + "name": "ComponentInfoBlockBlock1BodyEntries", "description": null, "fields": [ { @@ -6639,7 +7423,7 @@ }, { "kind": "OBJECT", - "name": "ComponentHeroBannerBodyTextLinks", + "name": "ComponentInfoBlockBlock1BodyLinks", "description": null, "fields": [ { @@ -6651,7 +7435,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentHeroBannerBodyTextAssets", + "name": "ComponentInfoBlockBlock1BodyAssets", "ofType": null } }, @@ -6667,7 +7451,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentHeroBannerBodyTextEntries", + "name": "ComponentInfoBlockBlock1BodyEntries", "ofType": null } }, @@ -6683,7 +7467,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentHeroBannerBodyTextResources", + "name": "ComponentInfoBlockBlock1BodyResources", "ofType": null } }, @@ -6698,7 +7482,7 @@ }, { "kind": "OBJECT", - "name": "ComponentHeroBannerBodyTextResources", + "name": "ComponentInfoBlockBlock1BodyResources", "description": null, "fields": [ { @@ -6724,20 +7508,9 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentHeroBannerCollection", - "description": null, - "fields": [ + }, { - "name": "items", + "name": "hyperlink", "description": null, "args": [], "type": { @@ -6747,9 +7520,13 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentHeroBanner", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } } } }, @@ -6757,23 +7534,42 @@ "deprecationReason": null }, { - "name": "limit", + "name": "inline", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock2Body", + "description": null, + "fields": [ { - "name": "skip", + "name": "json", "description": null, "args": [], "type": { @@ -6781,7 +7577,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "JSON", "ofType": null } }, @@ -6789,15 +7585,15 @@ "deprecationReason": null }, { - "name": "total", + "name": "links", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock2BodyLinks", "ofType": null } }, @@ -6811,320 +7607,686 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ComponentHeroBannerFilter", + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock2BodyAssets", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "AND", + "name": "block", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentHeroBannerFilter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentHeroBannerFilter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock2BodyEntries", + "description": null, + "fields": [ { - "name": "bodyText_contains", + "name": "block", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bodyText_exists", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bodyText_not_contains", + "name": "inline", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock2BodyLinks", + "description": null, + "fields": [ { - "name": "colorPalette", + "name": "assets", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock2BodyAssets", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_contains", + "name": "entries", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock2BodyEntries", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_exists", + "name": "resources", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock2BodyResources", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock2BodyResources", + "description": null, + "fields": [ { - "name": "colorPalette_in", + "name": "block", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_not", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_not_contains", + "name": "inline", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock3Body", + "description": null, + "fields": [ { - "name": "colorPalette_not_in", + "name": "json", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "contentfulMetadata", + "name": "links", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock3BodyLinks", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock3BodyAssets", + "description": null, + "fields": [ { - "name": "ctaText", + "name": "block", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_contains", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock3BodyEntries", + "description": null, + "fields": [ + { + "name": "block", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_exists", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_in", + "name": "inline", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock3BodyLinks", + "description": null, + "fields": [ + { + "name": "assets", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock3BodyAssets", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_not", + "name": "entries", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock3BodyEntries", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_not_contains", + "name": "resources", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock3BodyResources", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockBlock3BodyResources", + "description": null, + "fields": [ + { + "name": "block", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ctaText_not_in", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inline", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockCollection", + "description": null, + "fields": [ + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentInfoBlock", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline", + "name": "skip", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_contains", + "name": "total", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ComponentInfoBlockFilter", + "description": null, + "fields": null, + "inputFields": [ { - "name": "headline_exists", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentInfoBlockFilter", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_in", + "name": "OR", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ComponentInfoBlockFilter", "ofType": null } }, @@ -7133,7 +8295,7 @@ "deprecationReason": null }, { - "name": "headline_not", + "name": "block1Body_contains", "description": null, "type": { "kind": "SCALAR", @@ -7145,11 +8307,11 @@ "deprecationReason": null }, { - "name": "headline_not_contains", + "name": "block1Body_exists", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -7157,23 +8319,19 @@ "deprecationReason": null }, { - "name": "headline_not_in", + "name": "block1Body_not_contains", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "heroSize", + "name": "block1Image_exists", "description": null, "type": { "kind": "SCALAR", @@ -7185,11 +8343,11 @@ "deprecationReason": null }, { - "name": "heroSize_exists", + "name": "block2Body_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7197,7 +8355,7 @@ "deprecationReason": null }, { - "name": "heroSize_not", + "name": "block2Body_exists", "description": null, "type": { "kind": "SCALAR", @@ -7209,11 +8367,11 @@ "deprecationReason": null }, { - "name": "imageStyle", + "name": "block2Body_not_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7221,7 +8379,7 @@ "deprecationReason": null }, { - "name": "imageStyle_exists", + "name": "block2Image_exists", "description": null, "type": { "kind": "SCALAR", @@ -7233,7 +8391,19 @@ "deprecationReason": null }, { - "name": "imageStyle_not", + "name": "block3Body_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "block3Body_exists", "description": null, "type": { "kind": "SCALAR", @@ -7245,7 +8415,19 @@ "deprecationReason": null }, { - "name": "image_exists", + "name": "block3Body_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "block3Image_exists", "description": null, "type": { "kind": "SCALAR", @@ -7257,7 +8439,7 @@ "deprecationReason": null }, { - "name": "internalName", + "name": "colorPalette", "description": null, "type": { "kind": "SCALAR", @@ -7269,7 +8451,7 @@ "deprecationReason": null }, { - "name": "internalName_contains", + "name": "colorPalette_contains", "description": null, "type": { "kind": "SCALAR", @@ -7281,7 +8463,7 @@ "deprecationReason": null }, { - "name": "internalName_exists", + "name": "colorPalette_exists", "description": null, "type": { "kind": "SCALAR", @@ -7293,7 +8475,7 @@ "deprecationReason": null }, { - "name": "internalName_in", + "name": "colorPalette_in", "description": null, "type": { "kind": "LIST", @@ -7309,7 +8491,7 @@ "deprecationReason": null }, { - "name": "internalName_not", + "name": "colorPalette_not", "description": null, "type": { "kind": "SCALAR", @@ -7321,7 +8503,7 @@ "deprecationReason": null }, { - "name": "internalName_not_contains", + "name": "colorPalette_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -7333,7 +8515,7 @@ "deprecationReason": null }, { - "name": "internalName_not_in", + "name": "colorPalette_not_in", "description": null, "type": { "kind": "LIST", @@ -7349,11 +8531,11 @@ "deprecationReason": null }, { - "name": "sys", + "name": "contentfulMetadata", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SysFilter", + "name": "ContentfulMetadataFilter", "ofType": null }, "defaultValue": null, @@ -7361,7 +8543,31 @@ "deprecationReason": null }, { - "name": "targetPage_exists", + "name": "headline", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headline_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headline_exists", "description": null, "type": { "kind": "SCALAR", @@ -7371,87 +8577,339 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentHeroBannerLinkingCollections", - "description": null, - "fields": [ + }, { - "name": "entryCollection", + "name": "headline_in", "description": null, - "args": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headline_not", + "description": null, "type": { - "kind": "OBJECT", - "name": "EntryCollection", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageCollection", + "name": "headline_not_contains", "description": null, - "args": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headline_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SysFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentInfoBlockLinkingCollections", + "description": null, + "fields": [ + { + "name": "entryCollection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "EntryCollection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageCollection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", "name": "Int", "ofType": null }, @@ -7479,7 +8937,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentHeroBannerLinkingCollectionsPageCollectionOrder", + "name": "ComponentInfoBlockLinkingCollectionsPageCollectionOrder", "ofType": null } }, @@ -7528,7 +8986,7 @@ }, { "kind": "ENUM", - "name": "ComponentHeroBannerLinkingCollectionsPageCollectionOrder", + "name": "ComponentInfoBlockLinkingCollectionsPageCollectionOrder", "description": null, "fields": null, "inputFields": null, @@ -7623,7 +9081,7 @@ }, { "kind": "ENUM", - "name": "ComponentHeroBannerOrder", + "name": "ComponentInfoBlockOrder", "description": null, "fields": null, "inputFields": null, @@ -7641,18 +9099,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "ctaText_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ctaText_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "headline_ASC", "description": null, @@ -7666,37 +9112,25 @@ "deprecationReason": null }, { - "name": "heroSize_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "heroSize_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imageStyle_ASC", + "name": "internalName_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "imageStyle_DESC", + "name": "internalName_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_ASC", + "name": "subline_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_DESC", + "name": "subline_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -7752,29 +9186,29 @@ ], "possibleTypes": null }, - { - "kind": "UNION", - "name": "ComponentHeroBannerTargetPage", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Page", - "ofType": null - } - ] - }, { "kind": "OBJECT", - "name": "ComponentInfoBlock", - "description": "Full-width container for displaying short bits of generic information with optional icons/visuals [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentInfoBlock)", + "name": "ComponentProductTable", + "description": "Component that renders products in a table enabling a side-by-side comparison [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentProductTable)", "fields": [ { - "name": "block1Body", + "name": "contentfulMetadata", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headline", "description": null, "args": [ { @@ -7791,15 +9225,15 @@ } ], "type": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock1Body", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "block1Image", + "name": "internalName", "description": null, "args": [ { @@ -7813,39 +9247,31 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "Asset", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "block2Body", + "name": "linkedFrom", "description": null, "args": [ { - "name": "locale", + "name": "allowedLocales", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -7854,16 +9280,28 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentInfoBlockBlock2Body", + "name": "ComponentProductTableLinkingCollections", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "block2Image", + "name": "productsCollection", "description": null, "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "locale", "description": null, @@ -7877,73 +9315,51 @@ "deprecationReason": null }, { - "name": "preview", + "name": "order", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentProductTableProductsCollectionOrder", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "block3Body", - "description": null, - "args": [ + }, { - "name": "locale", + "name": "preview", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock3Body", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "block3Image", - "description": null, - "args": [ + }, { - "name": "locale", + "name": "skip", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "0", "isDeprecated": false, "deprecationReason": null }, { - "name": "preview", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TopicProductFilter", "ofType": null }, "defaultValue": null, @@ -7953,14 +9369,14 @@ ], "type": { "kind": "OBJECT", - "name": "Asset", + "name": "ComponentProductTableProductsCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette", + "name": "subline", "description": null, "args": [ { @@ -7985,7 +9401,7 @@ "deprecationReason": null }, { - "name": "contentfulMetadata", + "name": "sys", "description": null, "args": [], "type": { @@ -7993,136 +9409,16 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContentfulMetadata", + "name": "Sys", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "headline", - "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName", - "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "linkedFrom", - "description": null, - "args": [ - { - "name": "allowedLocales", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ComponentInfoBlockLinkingCollections", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subline", - "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sys", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + } + ], + "inputFields": null, + "interfaces": [ { "kind": "INTERFACE", "name": "Entry", @@ -8134,87 +9430,72 @@ }, { "kind": "OBJECT", - "name": "ComponentInfoBlockBlock1Body", + "name": "ComponentProductTableCollection", "description": null, "fields": [ { - "name": "json", + "name": "items", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentProductTable", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "links", + "name": "limit", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock1BodyLinks", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock1BodyAssets", - "description": null, - "fields": [ + }, { - "name": "block", + "name": "skip", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hyperlink", + "name": "total", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, @@ -8227,419 +9508,511 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock1BodyEntries", + "kind": "INPUT_OBJECT", + "name": "ComponentProductTableFilter", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "block", + "name": "AND", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ComponentProductTableFilter", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hyperlink", + "name": "OR", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ComponentProductTableFilter", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "inline", + "name": "contentfulMetadata", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock1BodyLinks", - "description": null, - "fields": [ + }, { - "name": "assets", + "name": "headline", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock1BodyAssets", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "entries", + "name": "headline_contains", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock1BodyEntries", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "resources", + "name": "headline_exists", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headline_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock1BodyResources", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock1BodyResources", - "description": null, - "fields": [ + }, { - "name": "block", + "name": "headline_not", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceLink", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock2Body", - "description": null, - "fields": [ + }, { - "name": "json", + "name": "headline_not_contains", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "links", + "name": "headline_not_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock2BodyLinks", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock2BodyAssets", - "description": null, - "fields": [ + }, { - "name": "block", + "name": "internalName", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hyperlink", + "name": "internalName_contains", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock2BodyEntries", - "description": null, - "fields": [ + }, { - "name": "block", + "name": "internalName_exists", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hyperlink", + "name": "internalName_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "inline", + "name": "internalName_not", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock2BodyLinks", - "description": null, - "fields": [ + }, { - "name": "assets", + "name": "internalName_not_contains", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock2BodyAssets", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "entries", + "name": "internalName_not_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock2BodyEntries", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "resources", + "name": "products", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "INPUT_OBJECT", + "name": "cfTopicProductNestedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productsCollection_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock2BodyResources", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SysFilter", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ComponentInfoBlockBlock2BodyResources", + "name": "ComponentProductTableLinkingCollections", "description": null, "fields": [ { - "name": "block", + "name": "entryCollection", "description": null, - "args": [], + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "kind": "OBJECT", + "name": "EntryCollection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageCollection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ResourceLink", + "kind": "ENUM", + "name": "ComponentProductTableLinkingCollectionsPageCollectionOrder", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "PageCollection", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -8650,13 +10023,223 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "ComponentProductTableLinkingCollectionsPageCollectionOrder", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "internalName_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageName_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageName_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_firstPublishedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_firstPublishedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedVersion_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedVersion_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ComponentProductTableOrder", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "headline_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headline_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_firstPublishedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_firstPublishedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedVersion_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedVersion_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "ComponentInfoBlockBlock3Body", + "name": "ComponentProductTableProductsCollection", "description": null, "fields": [ { - "name": "json", + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TopicProduct", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", "description": null, "args": [], "type": { @@ -8664,7 +10247,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "JSON", + "name": "Int", "ofType": null } }, @@ -8672,15 +10255,31 @@ "deprecationReason": null }, { - "name": "links", + "name": "skip", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock3BodyLinks", + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -8694,45 +10293,323 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock3BodyAssets", + "kind": "ENUM", + "name": "ComponentProductTableProductsCollectionOrder", "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "internalName_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_firstPublishedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_firstPublishedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedVersion_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedVersion_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentQuote", + "description": "Full-width component for quotes, reviews and testimonials, includes multiple layout options [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentQuote)", "fields": [ { - "name": "block", + "name": "colorPalette", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentfulMetadata", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "image", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imagePosition", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkedFrom", + "description": null, + "args": [ + { + "name": "allowedLocales", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentQuoteLinkingCollections", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quote", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentQuoteQuote", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quoteAlignment", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hyperlink", + "name": "sys", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } + "kind": "OBJECT", + "name": "Sys", + "ofType": null } }, "isDeprecated": false, @@ -8740,17 +10617,23 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ComponentInfoBlockBlock3BodyEntries", + "name": "ComponentQuoteCollection", "description": null, "fields": [ { - "name": "block", + "name": "items", "description": null, "args": [], "type": { @@ -8760,8 +10643,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "Entry", + "kind": "OBJECT", + "name": "ComponentQuote", "ofType": null } } @@ -8770,40 +10653,48 @@ "deprecationReason": null }, { - "name": "hyperlink", + "name": "limit", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "inline", + "name": "skip", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, @@ -8816,168 +10707,515 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock3BodyLinks", + "kind": "INPUT_OBJECT", + "name": "ComponentQuoteFilter", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "assets", + "name": "AND", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock3BodyAssets", + "kind": "INPUT_OBJECT", + "name": "ComponentQuoteFilter", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "entries", + "name": "OR", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock3BodyEntries", + "kind": "INPUT_OBJECT", + "name": "ComponentQuoteFilter", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "resources", + "name": "colorPalette", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "colorPalette_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "colorPalette_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "colorPalette_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock3BodyResources", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentInfoBlockBlock3BodyResources", - "description": null, - "fields": [ + }, { - "name": "block", + "name": "colorPalette_not", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "colorPalette_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "colorPalette_not_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceLink", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentInfoBlockCollection", - "description": null, - "fields": [ + }, { - "name": "items", + "name": "contentfulMetadata", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imagePosition", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imagePosition_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imagePosition_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "image_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentInfoBlock", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "limit", + "name": "internalName_not", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_not_in", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "args": [], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quoteAlignment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quoteAlignment_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quoteAlignment_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quote_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quote_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quote_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SysFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentQuoteLinkingCollections", + "description": null, + "fields": [ + { + "name": "entryCollection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "EntryCollection", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "total", + "name": "pageCollection", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentQuoteLinkingCollectionsPageCollectionOrder", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "PageCollection", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -8989,605 +11227,523 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ComponentInfoBlockFilter", + "kind": "ENUM", + "name": "ComponentQuoteLinkingCollectionsPageCollectionOrder", "description": null, "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentInfoBlockFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "OR", + "name": "internalName_ASC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentInfoBlockFilter", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block1Body_contains", + "name": "internalName_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block1Body_exists", + "name": "pageName_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block1Body_not_contains", + "name": "pageName_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block1Image_exists", + "name": "slug_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block2Body_contains", + "name": "slug_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block2Body_exists", + "name": "sys_firstPublishedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block2Body_not_contains", + "name": "sys_firstPublishedAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block2Image_exists", + "name": "sys_id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block3Body_contains", + "name": "sys_id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block3Body_exists", + "name": "sys_publishedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block3Body_not_contains", + "name": "sys_publishedAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "block3Image_exists", + "name": "sys_publishedVersion_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette", + "name": "sys_publishedVersion_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ComponentQuoteOrder", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "colorPalette_contains", + "name": "colorPalette_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_exists", + "name": "colorPalette_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_in", + "name": "imagePosition_ASC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_not", + "name": "imagePosition_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_not_contains", + "name": "internalName_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_not_in", + "name": "internalName_DESC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "contentfulMetadata", + "name": "quoteAlignment_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataFilter", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline", + "name": "quoteAlignment_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_contains", + "name": "sys_firstPublishedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_exists", + "name": "sys_firstPublishedAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_in", + "name": "sys_id_ASC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_not", + "name": "sys_id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_not_contains", + "name": "sys_publishedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_not_in", + "name": "sys_publishedAt_DESC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName", + "name": "sys_publishedVersion_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_contains", + "name": "sys_publishedVersion_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentQuoteQuote", + "description": null, + "fields": [ { - "name": "internalName_exists", + "name": "json", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_in", + "name": "links", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ComponentQuoteQuoteLinks", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentQuoteQuoteAssets", + "description": null, + "fields": [ { - "name": "internalName_not", + "name": "block", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_not_contains", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentQuoteQuoteEntries", + "description": null, + "fields": [ { - "name": "internalName_not_in", + "name": "block", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subline", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subline_contains", + "name": "inline", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentQuoteQuoteLinks", + "description": null, + "fields": [ { - "name": "subline_exists", + "name": "assets", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentQuoteQuoteAssets", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subline_in", + "name": "entries", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ComponentQuoteQuoteEntries", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subline_not", + "name": "resources", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentQuoteQuoteResources", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentQuoteQuoteResources", + "description": null, + "fields": [ { - "name": "subline_not_contains", + "name": "block", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subline_not_in", + "name": "hyperlink", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys", + "name": "inline", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SysFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ComponentInfoBlockLinkingCollections", - "description": null, + "name": "ComponentTextBlock", + "description": "Constrained-width component for displaying ad-hoc paragraphs of text (FAQs, intros, descriptions) [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentTextBlock)", "fields": [ { - "name": "entryCollection", + "name": "body", "description": null, "args": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, { "name": "locale", "description": null, @@ -9599,56 +11755,86 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentTextBlockBody", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "colorPalette", + "description": null, + "args": [ { - "name": "preview", + "name": "locale", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "EntryCollection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageCollection", + "name": "contentfulMetadata", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headline", "description": null, "args": [ { - "name": "limit", + "name": "locale", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": "100", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName", + "description": null, + "args": [ { "name": "locale", "description": null, @@ -9660,271 +11846,270 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkedFrom", + "description": null, + "args": [ { - "name": "order", + "name": "allowedLocales", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "ComponentInfoBlockLinkingCollectionsPageCollectionOrder", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentTextBlockLinkingCollections", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subline", + "description": null, + "args": [ { - "name": "preview", + "name": "locale", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "PageCollection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ComponentInfoBlockLinkingCollectionsPageCollectionOrder", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "internalName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "sys_publishedVersion_ASC", + "name": "sys", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sys", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "sys_publishedVersion_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "Entry", + "ofType": null } ], + "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "ComponentInfoBlockOrder", + "kind": "OBJECT", + "name": "ComponentTextBlockBody", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "colorPalette_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "colorPalette_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "headline_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "headline_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subline_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subline_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "fields": [ { - "name": "sys_firstPublishedAt_DESC", + "name": "json", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_ASC", + "name": "links", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentTextBlockBodyLinks", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentTextBlockBodyAssets", + "description": null, + "fields": [ { - "name": "sys_id_DESC", + "name": "block", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_ASC", + "name": "hyperlink", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentTextBlockBodyEntries", + "description": null, + "fields": [ { - "name": "sys_publishedAt_DESC", + "name": "block", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_ASC", + "name": "hyperlink", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", + "name": "inline", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ComponentProductTable", - "description": "Component that renders products in a table enabling a side-by-side comparison [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentProductTable)", + "name": "ComponentTextBlockBodyLinks", + "description": null, "fields": [ { - "name": "contentfulMetadata", + "name": "assets", "description": null, "args": [], "type": { @@ -9932,7 +12117,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContentfulMetadata", + "name": "ComponentTextBlockBodyAssets", "ofType": null } }, @@ -9940,209 +12125,115 @@ "deprecationReason": null }, { - "name": "headline", + "name": "entries", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentTextBlockBodyEntries", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName", + "name": "resources", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentTextBlockBodyResources", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentTextBlockBodyResources", + "description": null, + "fields": [ { - "name": "linkedFrom", + "name": "block", "description": null, - "args": [ - { - "name": "allowedLocales", - "description": null, - "type": { - "kind": "LIST", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceLink", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "ComponentProductTableLinkingCollections", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "productsCollection", + "name": "hyperlink", "description": null, - "args": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "ComponentProductTableProductsCollectionOrder", + "kind": "OBJECT", + "name": "ResourceLink", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TopicProductFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ComponentProductTableProductsCollection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subline", - "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys", + "name": "inline", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Sys", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } } }, "isDeprecated": false, @@ -10150,19 +12241,13 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ComponentProductTableCollection", + "name": "ComponentTextBlockCollection", "description": null, "fields": [ { @@ -10177,7 +12262,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentProductTable", + "name": "ComponentTextBlock", "ofType": null } } @@ -10241,7 +12326,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ComponentProductTableFilter", + "name": "ComponentTextBlockFilter", "description": null, "fields": null, "inputFields": [ @@ -10253,7 +12338,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ComponentProductTableFilter", + "name": "ComponentTextBlockFilter", "ofType": null } }, @@ -10269,7 +12354,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ComponentProductTableFilter", + "name": "ComponentTextBlockFilter", "ofType": null } }, @@ -10278,11 +12363,11 @@ "deprecationReason": null }, { - "name": "contentfulMetadata", + "name": "body_contains", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -10290,7 +12375,19 @@ "deprecationReason": null }, { - "name": "headline", + "name": "body_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "body_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -10302,7 +12399,7 @@ "deprecationReason": null }, { - "name": "headline_contains", + "name": "colorPalette", "description": null, "type": { "kind": "SCALAR", @@ -10314,7 +12411,19 @@ "deprecationReason": null }, { - "name": "headline_exists", + "name": "colorPalette_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "colorPalette_exists", "description": null, "type": { "kind": "SCALAR", @@ -10326,7 +12435,7 @@ "deprecationReason": null }, { - "name": "headline_in", + "name": "colorPalette_in", "description": null, "type": { "kind": "LIST", @@ -10342,7 +12451,7 @@ "deprecationReason": null }, { - "name": "headline_not", + "name": "colorPalette_not", "description": null, "type": { "kind": "SCALAR", @@ -10354,7 +12463,7 @@ "deprecationReason": null }, { - "name": "headline_not_contains", + "name": "colorPalette_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -10366,7 +12475,7 @@ "deprecationReason": null }, { - "name": "headline_not_in", + "name": "colorPalette_not_in", "description": null, "type": { "kind": "LIST", @@ -10382,7 +12491,19 @@ "deprecationReason": null }, { - "name": "internalName", + "name": "contentfulMetadata", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headline", "description": null, "type": { "kind": "SCALAR", @@ -10394,7 +12515,7 @@ "deprecationReason": null }, { - "name": "internalName_contains", + "name": "headline_contains", "description": null, "type": { "kind": "SCALAR", @@ -10406,7 +12527,7 @@ "deprecationReason": null }, { - "name": "internalName_exists", + "name": "headline_exists", "description": null, "type": { "kind": "SCALAR", @@ -10418,7 +12539,7 @@ "deprecationReason": null }, { - "name": "internalName_in", + "name": "headline_in", "description": null, "type": { "kind": "LIST", @@ -10434,7 +12555,7 @@ "deprecationReason": null }, { - "name": "internalName_not", + "name": "headline_not", "description": null, "type": { "kind": "SCALAR", @@ -10446,7 +12567,7 @@ "deprecationReason": null }, { - "name": "internalName_not_contains", + "name": "headline_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -10458,7 +12579,7 @@ "deprecationReason": null }, { - "name": "internalName_not_in", + "name": "headline_not_in", "description": null, "type": { "kind": "LIST", @@ -10474,11 +12595,11 @@ "deprecationReason": null }, { - "name": "products", + "name": "internalName", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "cfTopicProductNestedFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -10486,7 +12607,19 @@ "deprecationReason": null }, { - "name": "productsCollection_exists", + "name": "internalName_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_exists", "description": null, "type": { "kind": "SCALAR", @@ -10497,6 +12630,62 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "internalName_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "subline", "description": null, @@ -10608,7 +12797,7 @@ }, { "kind": "OBJECT", - "name": "ComponentProductTableLinkingCollections", + "name": "ComponentTextBlockLinkingCollections", "description": null, "fields": [ { @@ -10708,7 +12897,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentProductTableLinkingCollectionsPageCollectionOrder", + "name": "ComponentTextBlockLinkingCollectionsPageCollectionOrder", "ofType": null } }, @@ -10757,7 +12946,7 @@ }, { "kind": "ENUM", - "name": "ComponentProductTableLinkingCollectionsPageCollectionOrder", + "name": "ComponentTextBlockLinkingCollectionsPageCollectionOrder", "description": null, "fields": null, "inputFields": null, @@ -10852,12 +13041,24 @@ }, { "kind": "ENUM", - "name": "ComponentProductTableOrder", + "name": "ComponentTextBlockOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ + { + "name": "colorPalette_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "colorPalette_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "headline_ASC", "description": null, @@ -10947,11 +13148,11 @@ }, { "kind": "OBJECT", - "name": "ComponentProductTableProductsCollection", + "name": "ContentfulMetadata", "description": null, "fields": [ { - "name": "items", + "name": "tags", "description": null, "args": [], "type": { @@ -10962,170 +13163,176 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TopicProduct", + "name": "ContentfulTag", "ofType": null } } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "tags", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataTagsFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "limit", + "name": "tags_exists", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataTagsFilter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id_contains_all", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "skip", + "name": "id_contains_none", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "total", + "name": "id_contains_some", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "ComponentProductTableProductsCollectionOrder", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "internalName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "price_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "price_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "ContentfulTag", + "description": "Represents a tag entity for finding and organizing content easily.\n Find out more here: https://www.contentful.com/developers/docs/references/content-delivery-api/#/reference/content-tags", + "fields": [ { - "name": "sys_publishedVersion_ASC", + "name": "id", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", + "name": "name", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "DateTime", + "description": "A date-time string at UTC, such as 2007-12-03T10:15:30Z,\n compliant with the 'date-time' format outlined in section 5.6 of\n the RFC 3339 profile of the ISO 8601 standard for representation\n of dates and times using the Gregorian calendar.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Dimension", + "description": "The 'Dimension' type represents dimensions as whole numeric values between `1` and `4000`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ComponentQuote", - "description": "Full-width component for quotes, reviews and testimonials, includes multiple layout options [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentQuote)", + "name": "EditorTest", + "description": "[See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/editorTest)", "fields": [ { - "name": "colorPalette", + "name": "adminTitle", "description": null, "args": [ { @@ -11150,23 +13357,7 @@ "deprecationReason": null }, { - "name": "contentfulMetadata", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ContentfulMetadata", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", + "name": "body", "description": null, "args": [ { @@ -11180,55 +13371,34 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "Asset", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "imagePosition", + "name": "contentfulMetadata", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName", + "name": "description", "description": null, "args": [ { @@ -11275,57 +13445,7 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentQuoteLinkingCollections", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quote", - "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ComponentQuoteQuote", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quoteAlignment", - "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "EditorTestLinkingCollections", "ofType": null }, "isDeprecated": false, @@ -11361,7 +13481,7 @@ }, { "kind": "OBJECT", - "name": "ComponentQuoteCollection", + "name": "EditorTestCollection", "description": null, "fields": [ { @@ -11376,7 +13496,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentQuote", + "name": "EditorTest", "ofType": null } } @@ -11440,7 +13560,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ComponentQuoteFilter", + "name": "EditorTestFilter", "description": null, "fields": null, "inputFields": [ @@ -11452,7 +13572,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ComponentQuoteFilter", + "name": "EditorTestFilter", "ofType": null } }, @@ -11468,7 +13588,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ComponentQuoteFilter", + "name": "EditorTestFilter", "ofType": null } }, @@ -11477,7 +13597,7 @@ "deprecationReason": null }, { - "name": "colorPalette", + "name": "adminTitle", "description": null, "type": { "kind": "SCALAR", @@ -11489,7 +13609,7 @@ "deprecationReason": null }, { - "name": "colorPalette_contains", + "name": "adminTitle_contains", "description": null, "type": { "kind": "SCALAR", @@ -11501,7 +13621,7 @@ "deprecationReason": null }, { - "name": "colorPalette_exists", + "name": "adminTitle_exists", "description": null, "type": { "kind": "SCALAR", @@ -11513,7 +13633,7 @@ "deprecationReason": null }, { - "name": "colorPalette_in", + "name": "adminTitle_in", "description": null, "type": { "kind": "LIST", @@ -11529,7 +13649,7 @@ "deprecationReason": null }, { - "name": "colorPalette_not", + "name": "adminTitle_not", "description": null, "type": { "kind": "SCALAR", @@ -11541,7 +13661,7 @@ "deprecationReason": null }, { - "name": "colorPalette_not_contains", + "name": "adminTitle_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -11553,7 +13673,7 @@ "deprecationReason": null }, { - "name": "colorPalette_not_in", + "name": "adminTitle_not_in", "description": null, "type": { "kind": "LIST", @@ -11569,23 +13689,11 @@ "deprecationReason": null }, { - "name": "contentfulMetadata", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imagePosition", + "name": "body", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -11593,11 +13701,11 @@ "deprecationReason": null }, { - "name": "imagePosition_exists", + "name": "body_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -11605,7 +13713,7 @@ "deprecationReason": null }, { - "name": "imagePosition_not", + "name": "body_exists", "description": null, "type": { "kind": "SCALAR", @@ -11617,19 +13725,23 @@ "deprecationReason": null }, { - "name": "image_exists", + "name": "body_in", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName", + "name": "body_not", "description": null, "type": { "kind": "SCALAR", @@ -11641,7 +13753,7 @@ "deprecationReason": null }, { - "name": "internalName_contains", + "name": "body_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -11653,19 +13765,7 @@ "deprecationReason": null }, { - "name": "internalName_exists", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_in", + "name": "body_not_in", "description": null, "type": { "kind": "LIST", @@ -11681,11 +13781,11 @@ "deprecationReason": null }, { - "name": "internalName_not", + "name": "contentfulMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", "ofType": null }, "defaultValue": null, @@ -11693,7 +13793,7 @@ "deprecationReason": null }, { - "name": "internalName_not_contains", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -11705,27 +13805,11 @@ "deprecationReason": null }, { - "name": "internalName_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quoteAlignment", + "name": "description_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -11733,7 +13817,7 @@ "deprecationReason": null }, { - "name": "quoteAlignment_exists", + "name": "description_exists", "description": null, "type": { "kind": "SCALAR", @@ -11745,19 +13829,23 @@ "deprecationReason": null }, { - "name": "quoteAlignment_not", + "name": "description_in", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quote_contains", + "name": "description_not", "description": null, "type": { "kind": "SCALAR", @@ -11769,11 +13857,11 @@ "deprecationReason": null }, { - "name": "quote_exists", + "name": "description_not_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -11781,12 +13869,16 @@ "deprecationReason": null }, { - "name": "quote_not_contains", + "name": "description_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -11811,7 +13903,7 @@ }, { "kind": "OBJECT", - "name": "ComponentQuoteLinkingCollections", + "name": "EditorTestLinkingCollections", "description": null, "fields": [ { @@ -11874,83 +13966,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "pageCollection", - "description": null, - "args": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ComponentQuoteLinkingCollectionsPageCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PageCollection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -11960,44 +13975,32 @@ }, { "kind": "ENUM", - "name": "ComponentQuoteLinkingCollectionsPageCollectionOrder", + "name": "EditorTestOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "internalName_ASC", + "name": "adminTitle_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_DESC", + "name": "adminTitle_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug_ASC", + "name": "description_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_DESC", + "name": "description_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -12054,195 +14057,212 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "ComponentQuoteOrder", + "kind": "INTERFACE", + "name": "Entry", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "fields": [ { - "name": "colorPalette_ASC", + "name": "contentfulMetadata", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_DESC", + "name": "sys", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sys", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ComponentCta", + "ofType": null }, { - "name": "imagePosition_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "ComponentDuplex", + "ofType": null }, { - "name": "imagePosition_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "ComponentHeroBanner", + "ofType": null }, { - "name": "internalName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "ComponentInfoBlock", + "ofType": null }, { - "name": "internalName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "ComponentProductTable", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ComponentQuote", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ComponentTextBlock", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EditorTest", + "ofType": null }, { - "name": "quoteAlignment_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "FooterMenu", + "ofType": null }, { - "name": "quoteAlignment_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "MenuGroup", + "ofType": null }, { - "name": "sys_firstPublishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "NavigationMenu", + "ofType": null }, { - "name": "sys_firstPublishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "NtAudience", + "ofType": null }, { - "name": "sys_id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "NtExperience", + "ofType": null }, { - "name": "sys_id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "Page", + "ofType": null }, { - "name": "sys_publishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "Seo", + "ofType": null }, { - "name": "sys_publishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "TopicBusinessInfo", + "ofType": null }, { - "name": "sys_publishedVersion_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "TopicPerson", + "ofType": null }, { - "name": "sys_publishedVersion_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "TopicProduct", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TopicProductFeature", + "ofType": null } - ], - "possibleTypes": null + ] }, { "kind": "OBJECT", - "name": "ComponentQuoteQuote", + "name": "EntryCollection", "description": null, "fields": [ { - "name": "json", + "name": "items", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "links", + "name": "limit", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentQuoteQuoteLinks", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentQuoteQuoteAssets", - "description": null, - "fields": [ + }, { - "name": "block", + "name": "skip", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hyperlink", + "name": "total", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, @@ -12255,177 +14275,164 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ComponentQuoteQuoteEntries", + "kind": "INPUT_OBJECT", + "name": "EntryFilter", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "block", + "name": "AND", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "EntryFilter", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hyperlink", + "name": "OR", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "EntryFilter", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "inline", + "name": "contentfulMetadata", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SysFilter", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ComponentQuoteQuoteLinks", + "kind": "ENUM", + "name": "EntryOrder", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "assets", + "name": "sys_firstPublishedAt_ASC", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentQuoteQuoteAssets", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "entries", + "name": "sys_firstPublishedAt_DESC", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentQuoteQuoteEntries", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "resources", + "name": "sys_id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedVersion_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys_publishedVersion_DESC", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentQuoteQuoteResources", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null } ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": null, "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ComponentQuoteQuoteResources", - "description": null, + "name": "FooterMenu", + "description": "Navigation content type used for powering the Footer menu [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/footerMenu)", "fields": [ { - "name": "block", + "name": "contentfulMetadata", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceLink", - "ofType": null - } - } + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentTextBlock", - "description": "Constrained-width component for displaying ad-hoc paragraphs of text (FAQs, intros, descriptions) [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentTextBlock)", - "fields": [ + }, { - "name": "body", + "name": "facebookLink", "description": null, "args": [ { @@ -12442,15 +14449,15 @@ } ], "type": { - "kind": "OBJECT", - "name": "ComponentTextBlockBody", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette", + "name": "instagramLink", "description": null, "args": [ { @@ -12475,56 +14482,207 @@ "deprecationReason": null }, { - "name": "contentfulMetadata", + "name": "internalName", "description": null, - "args": [], + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ContentfulMetadata", - "ofType": null + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "legalLinks", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MenuGroupFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "MenuGroup", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline", + "name": "linkedFrom", + "description": null, + "args": [ + { + "name": "allowedLocales", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "FooterMenuLinkingCollections", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkedinLink", + "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "menuItemsCollection", "description": null, "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "locale", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FooterMenuMenuItemsCollectionOrder", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "0", "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName", - "description": null, - "args": [ + }, { - "name": "locale", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "MenuGroupFilter", "ofType": null }, "defaultValue": null, @@ -12533,44 +14691,31 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FooterMenuMenuItemsCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkedFrom", + "name": "sys", "description": null, - "args": [ - { - "name": "allowedLocales", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "ComponentTextBlockLinkingCollections", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sys", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "subline", + "name": "twitterLink", "description": null, "args": [ { @@ -12593,22 +14738,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "sys", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sys", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -12624,54 +14753,11 @@ }, { "kind": "OBJECT", - "name": "ComponentTextBlockBody", - "description": null, - "fields": [ - { - "name": "json", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "links", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentTextBlockBodyLinks", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentTextBlockBodyAssets", + "name": "FooterMenuCollection", "description": null, "fields": [ { - "name": "block", + "name": "items", "description": null, "args": [], "type": { @@ -12682,7 +14768,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Asset", + "name": "FooterMenu", "ofType": null } } @@ -12691,91 +14777,48 @@ "deprecationReason": null }, { - "name": "hyperlink", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentTextBlockBodyEntries", - "description": null, - "fields": [ - { - "name": "block", + "name": "limit", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hyperlink", + "name": "skip", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "inline", + "name": "total", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, @@ -12788,209 +14831,100 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ComponentTextBlockBodyLinks", + "kind": "INPUT_OBJECT", + "name": "FooterMenuFilter", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "assets", + "name": "AND", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentTextBlockBodyAssets", + "kind": "INPUT_OBJECT", + "name": "FooterMenuFilter", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "entries", + "name": "OR", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentTextBlockBodyEntries", + "kind": "INPUT_OBJECT", + "name": "FooterMenuFilter", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "resources", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentTextBlockBodyResources", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentTextBlockBodyResources", - "description": null, - "fields": [ - { - "name": "block", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceLink", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentTextBlockCollection", - "description": null, - "fields": [ - { - "name": "items", + "name": "contentfulMetadata", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentTextBlock", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "limit", + "name": "facebookLink", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "skip", + "name": "facebookLink_contains", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ComponentTextBlockFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", + "name": "facebookLink_exists", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentTextBlockFilter", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "facebookLink_in", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentTextBlockFilter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -12999,7 +14933,7 @@ "deprecationReason": null }, { - "name": "body_contains", + "name": "facebookLink_not", "description": null, "type": { "kind": "SCALAR", @@ -13011,11 +14945,11 @@ "deprecationReason": null }, { - "name": "body_exists", + "name": "facebookLink_not_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13023,19 +14957,23 @@ "deprecationReason": null }, { - "name": "body_not_contains", + "name": "facebookLink_not_in", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette", + "name": "instagramLink", "description": null, "type": { "kind": "SCALAR", @@ -13047,7 +14985,7 @@ "deprecationReason": null }, { - "name": "colorPalette_contains", + "name": "instagramLink_contains", "description": null, "type": { "kind": "SCALAR", @@ -13059,7 +14997,7 @@ "deprecationReason": null }, { - "name": "colorPalette_exists", + "name": "instagramLink_exists", "description": null, "type": { "kind": "SCALAR", @@ -13071,7 +15009,7 @@ "deprecationReason": null }, { - "name": "colorPalette_in", + "name": "instagramLink_in", "description": null, "type": { "kind": "LIST", @@ -13087,7 +15025,7 @@ "deprecationReason": null }, { - "name": "colorPalette_not", + "name": "instagramLink_not", "description": null, "type": { "kind": "SCALAR", @@ -13099,7 +15037,7 @@ "deprecationReason": null }, { - "name": "colorPalette_not_contains", + "name": "instagramLink_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -13111,7 +15049,7 @@ "deprecationReason": null }, { - "name": "colorPalette_not_in", + "name": "instagramLink_not_in", "description": null, "type": { "kind": "LIST", @@ -13127,19 +15065,7 @@ "deprecationReason": null }, { - "name": "contentfulMetadata", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "headline", + "name": "internalName", "description": null, "type": { "kind": "SCALAR", @@ -13151,7 +15077,7 @@ "deprecationReason": null }, { - "name": "headline_contains", + "name": "internalName_contains", "description": null, "type": { "kind": "SCALAR", @@ -13163,7 +15089,7 @@ "deprecationReason": null }, { - "name": "headline_exists", + "name": "internalName_exists", "description": null, "type": { "kind": "SCALAR", @@ -13175,7 +15101,7 @@ "deprecationReason": null }, { - "name": "headline_in", + "name": "internalName_in", "description": null, "type": { "kind": "LIST", @@ -13191,7 +15117,7 @@ "deprecationReason": null }, { - "name": "headline_not", + "name": "internalName_not", "description": null, "type": { "kind": "SCALAR", @@ -13203,7 +15129,7 @@ "deprecationReason": null }, { - "name": "headline_not_contains", + "name": "internalName_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -13215,7 +15141,7 @@ "deprecationReason": null }, { - "name": "headline_not_in", + "name": "internalName_not_in", "description": null, "type": { "kind": "LIST", @@ -13231,7 +15157,31 @@ "deprecationReason": null }, { - "name": "internalName", + "name": "legalLinks", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "cfMenuGroupNestedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "legalLinks_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkedinLink", "description": null, "type": { "kind": "SCALAR", @@ -13243,7 +15193,7 @@ "deprecationReason": null }, { - "name": "internalName_contains", + "name": "linkedinLink_contains", "description": null, "type": { "kind": "SCALAR", @@ -13255,7 +15205,7 @@ "deprecationReason": null }, { - "name": "internalName_exists", + "name": "linkedinLink_exists", "description": null, "type": { "kind": "SCALAR", @@ -13267,7 +15217,7 @@ "deprecationReason": null }, { - "name": "internalName_in", + "name": "linkedinLink_in", "description": null, "type": { "kind": "LIST", @@ -13283,7 +15233,7 @@ "deprecationReason": null }, { - "name": "internalName_not", + "name": "linkedinLink_not", "description": null, "type": { "kind": "SCALAR", @@ -13295,7 +15245,7 @@ "deprecationReason": null }, { - "name": "internalName_not_contains", + "name": "linkedinLink_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -13307,7 +15257,7 @@ "deprecationReason": null }, { - "name": "internalName_not_in", + "name": "linkedinLink_not_in", "description": null, "type": { "kind": "LIST", @@ -13323,7 +15273,43 @@ "deprecationReason": null }, { - "name": "subline", + "name": "menuItems", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "cfMenuGroupNestedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "menuItemsCollection_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SysFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "twitterLink", "description": null, "type": { "kind": "SCALAR", @@ -13335,7 +15321,7 @@ "deprecationReason": null }, { - "name": "subline_contains", + "name": "twitterLink_contains", "description": null, "type": { "kind": "SCALAR", @@ -13347,7 +15333,7 @@ "deprecationReason": null }, { - "name": "subline_exists", + "name": "twitterLink_exists", "description": null, "type": { "kind": "SCALAR", @@ -13359,7 +15345,7 @@ "deprecationReason": null }, { - "name": "subline_in", + "name": "twitterLink_in", "description": null, "type": { "kind": "LIST", @@ -13375,7 +15361,7 @@ "deprecationReason": null }, { - "name": "subline_not", + "name": "twitterLink_not", "description": null, "type": { "kind": "SCALAR", @@ -13387,7 +15373,7 @@ "deprecationReason": null }, { - "name": "subline_not_contains", + "name": "twitterLink_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -13399,7 +15385,7 @@ "deprecationReason": null }, { - "name": "subline_not_in", + "name": "twitterLink_not_in", "description": null, "type": { "kind": "LIST", @@ -13413,18 +15399,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "sys", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SysFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -13433,7 +15407,7 @@ }, { "kind": "OBJECT", - "name": "ComponentTextBlockLinkingCollections", + "name": "FooterMenuLinkingCollections", "description": null, "fields": [ { @@ -13496,80 +15470,82 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FooterMenuMenuItemsCollection", + "description": null, + "fields": [ { - "name": "pageCollection", + "name": "items", "description": null, - "args": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ComponentTextBlockLinkingCollectionsPageCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MenuGroup", "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "PageCollection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -13582,44 +15558,32 @@ }, { "kind": "ENUM", - "name": "ComponentTextBlockLinkingCollectionsPageCollectionOrder", + "name": "FooterMenuMenuItemsCollectionOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "internalName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageName_ASC", + "name": "groupName_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageName_DESC", + "name": "groupName_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_ASC", + "name": "internalTitle_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_DESC", + "name": "internalTitle_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -13677,32 +15641,32 @@ }, { "kind": "ENUM", - "name": "ComponentTextBlockOrder", + "name": "FooterMenuOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "colorPalette_ASC", + "name": "facebookLink_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "colorPalette_DESC", + "name": "facebookLink_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_ASC", + "name": "instagramLink_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "headline_DESC", + "name": "instagramLink_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -13720,13 +15684,13 @@ "deprecationReason": null }, { - "name": "subline_ASC", + "name": "linkedinLink_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subline_DESC", + "name": "linkedinLink_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -13778,205 +15742,641 @@ "description": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "twitterLink_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "twitterLink_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "HexColor", + "description": "The 'HexColor' type represents color in `rgb:ffffff` string format.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ID", + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ImageFormat", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "AVIF", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "JPG", + "description": "JPG image format.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "JPG_PROGRESSIVE", + "description": "Progressive JPG format stores multiple passes of an image in progressively higher detail.\n When a progressive image is loading, the viewer will first see a lower quality pixelated version which\n will gradually improve in detail, until the image is fully downloaded. This is to display an image as\n early as possible to make the layout look as designed.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PNG", + "description": "PNG image format", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PNG8", + "description": "8-bit PNG images support up to 256 colors and weigh less than the standard 24-bit PNG equivalent.\n The 8-bit PNG format is mostly used for simple images, such as icons or logos.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "WEBP", + "description": "WebP image format.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ImageResizeFocus", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "BOTTOM", + "description": "Focus the resizing on the bottom.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "BOTTOM_LEFT", + "description": "Focus the resizing on the bottom left.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "BOTTOM_RIGHT", + "description": "Focus the resizing on the bottom right.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CENTER", + "description": "Focus the resizing on the center.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FACE", + "description": "Focus the resizing on the largest face.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FACES", + "description": "Focus the resizing on the area containing all the faces.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LEFT", + "description": "Focus the resizing on the left.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "RIGHT", + "description": "Focus the resizing on the right.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOP", + "description": "Focus the resizing on the top.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOP_LEFT", + "description": "Focus the resizing on the top left.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOP_RIGHT", + "description": "Focus the resizing on the top right.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ImageResizeStrategy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "CROP", + "description": "Crops a part of the original image to fit into the specified dimensions.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FILL", + "description": "Resizes the image to the specified dimensions, cropping the image if needed.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIT", + "description": "Resizes the image to fit into the specified dimensions.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PAD", + "description": "Resizes the image to the specified dimensions, padding the image if needed.\n Uses desired background color as padding color.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCALE", + "description": "Resizes the image to the specified dimensions, changing the original aspect ratio if needed.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "THUMB", + "description": "Creates a thumbnail from the image.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImageTransformOptions", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "backgroundColor", + "description": "Desired background color, used with corner radius or `PAD` resize strategy.\n Defaults to transparent (for `PNG`, `PNG8` and `WEBP`) or white (for `JPG` and `JPG_PROGRESSIVE`).", + "type": { + "kind": "SCALAR", + "name": "HexColor", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cornerRadius", + "description": "Desired corner radius in pixels.\n Results in an image with rounded corners (pass `-1` for a full circle/ellipse).\n Defaults to `0`. Uses desired background color as padding color,\n unless the format is `JPG` or `JPG_PROGRESSIVE` and resize strategy is `PAD`, then defaults to white.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "format", + "description": "Desired image format. Defaults to the original image format.", + "type": { + "kind": "ENUM", + "name": "ImageFormat", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": "Desired height in pixels. Defaults to the original image height.", + "type": { + "kind": "SCALAR", + "name": "Dimension", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quality", + "description": "Desired quality of the image in percents.\n Used for `PNG8`, `JPG`, `JPG_PROGRESSIVE` and `WEBP` formats.", + "type": { + "kind": "SCALAR", + "name": "Quality", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resizeFocus", + "description": "Desired resize focus area. Defaults to `CENTER`.", + "type": { + "kind": "ENUM", + "name": "ImageResizeFocus", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resizeStrategy", + "description": "Desired resize strategy. Defaults to `FIT`.", + "type": { + "kind": "ENUM", + "name": "ImageResizeStrategy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": "Desired width in pixels. Defaults to the original image width.", + "type": { + "kind": "SCALAR", + "name": "Dimension", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "JSON", + "description": "The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ContentfulMetadata", - "description": null, + "name": "MenuGroup", + "description": "A group of items making up a section in the navigation menu [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/menuGroup)", "fields": [ { - "name": "tags", + "name": "contentfulMetadata", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ContentfulTag", + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "featuredPagesCollection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MenuGroupFeaturedPagesFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "MenuGroupFeaturedPagesCollection", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataFilter", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "tags", + "name": "groupLink", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MenuGroupGroupLinkFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataTagsFilter", + "kind": "UNION", + "name": "MenuGroupGroupLink", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tags_exists", + "name": "groupName", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataTagsFilter", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id_contains_all", + "name": "internalTitle", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_contains_none", + "name": "linkedFrom", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "name": "allowedLocales", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "MenuGroupLinkingCollections", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_contains_some", + "name": "sys", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Sys", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ContentfulTag", - "description": "Represents a tag entity for finding and organizing content easily.\n Find out more here: https://www.contentful.com/developers/docs/references/content-delivery-api/#/reference/content-tags", + "name": "MenuGroupCollection", + "description": null, "fields": [ { - "name": "id", + "name": "items", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MenuGroup", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "limit", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "DateTime", - "description": "A date-time string at UTC, such as 2007-12-03T10:15:30Z,\n compliant with the 'date-time' format outlined in section 5.6 of\n the RFC 3339 profile of the ISO 8601 standard for representation\n of dates and times using the Gregorian calendar.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Dimension", - "description": "The 'Dimension' type represents dimensions as whole numeric values between `1` and `4000`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "Entry", - "description": null, - "fields": [ + }, { - "name": "contentfulMetadata", + "name": "skip", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ContentfulMetadata", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -13984,15 +16384,15 @@ "deprecationReason": null }, { - "name": "sys", + "name": "total", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Sys", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -14003,92 +16403,11 @@ "inputFields": null, "interfaces": [], "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "ComponentCta", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ComponentDuplex", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ComponentHeroBanner", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ComponentInfoBlock", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ComponentProductTable", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ComponentQuote", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ComponentTextBlock", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "FooterMenu", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "MenuGroup", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "NavigationMenu", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Page", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Seo", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TopicBusinessInfo", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TopicPerson", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TopicProduct", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TopicProductFeature", - "ofType": null - } - ] + "possibleTypes": null }, { "kind": "OBJECT", - "name": "EntryCollection", + "name": "MenuGroupFeaturedPagesCollection", "description": null, "fields": [ { @@ -14102,8 +16421,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "Entry", + "kind": "UNION", + "name": "MenuGroupFeaturedPagesItem", "ofType": null } } @@ -14167,7 +16486,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "EntryFilter", + "name": "MenuGroupFeaturedPagesFilter", "description": null, "fields": null, "inputFields": [ @@ -14179,7 +16498,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EntryFilter", + "name": "MenuGroupFeaturedPagesFilter", "ofType": null } }, @@ -14195,7 +16514,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EntryFilter", + "name": "MenuGroupFeaturedPagesFilter", "ofType": null } }, @@ -14216,514 +16535,389 @@ "deprecationReason": null }, { - "name": "sys", + "name": "extraSection", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SysFilter", + "name": "cfextraSectionMultiTypeNestedFilter", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EntryOrder", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "sys_firstPublishedAt_ASC", + "name": "extraSectionCollection_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalName_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_firstPublishedAt_DESC", + "name": "internalName_not", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_ASC", + "name": "internalName_not_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_DESC", + "name": "internalName_not_in", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_ASC", + "name": "pageContent_exists", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_DESC", + "name": "pageName", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_ASC", + "name": "pageName_contains", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", + "name": "pageName_exists", "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Float", - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FooterMenu", - "description": "Navigation content type used for powering the Footer menu [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/footerMenu)", - "fields": [ + }, { - "name": "contentfulMetadata", + "name": "pageName_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ContentfulMetadata", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "facebookLink", + "name": "pageName_not", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "instagramLink", + "name": "pageName_not_contains", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName", + "name": "pageName_not_in", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "legalLinks", + "name": "seo_exists", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MenuGroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "MenuGroup", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkedFrom", + "name": "slug", "description": null, - "args": [ - { - "name": "allowedLocales", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "FooterMenuLinkingCollections", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkedinLink", + "name": "slug_contains", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "menuItemsCollection", + "name": "slug_exists", "description": null, - "args": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FooterMenuMenuItemsCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MenuGroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "FooterMenuMenuItemsCollection", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys", + "name": "slug_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Sys", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "twitterLink", + "name": "slug_not", "description": null, - "args": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FooterMenuCollection", - "description": null, - "fields": [ + }, { - "name": "items", + "name": "slug_not_contains", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FooterMenu", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "limit", + "name": "slug_not_in", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "skip", + "name": "sys", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SysFilter", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "total", + "name": "topSection", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "cftopSectionMultiTypeNestedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "topSectionCollection_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, + { + "kind": "UNION", + "name": "MenuGroupFeaturedPagesItem", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Page", + "ofType": null + } + ] + }, { "kind": "INPUT_OBJECT", - "name": "FooterMenuFilter", + "name": "MenuGroupFilter", "description": null, "fields": null, "inputFields": [ @@ -14735,7 +16929,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "FooterMenuFilter", + "name": "MenuGroupFilter", "ofType": null } }, @@ -14751,7 +16945,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "FooterMenuFilter", + "name": "MenuGroupFilter", "ofType": null } }, @@ -14760,11 +16954,59 @@ "deprecationReason": null }, { - "name": "contentfulMetadata", + "name": "contentfulMetadata", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "featuredPages", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "cffeaturedPagesMultiTypeNestedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "featuredPagesCollection_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groupLink", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "cfgroupLinkMultiTypeNestedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groupLink_exists", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataFilter", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -14772,7 +17014,7 @@ "deprecationReason": null }, { - "name": "facebookLink", + "name": "groupName", "description": null, "type": { "kind": "SCALAR", @@ -14784,7 +17026,7 @@ "deprecationReason": null }, { - "name": "facebookLink_contains", + "name": "groupName_contains", "description": null, "type": { "kind": "SCALAR", @@ -14796,7 +17038,7 @@ "deprecationReason": null }, { - "name": "facebookLink_exists", + "name": "groupName_exists", "description": null, "type": { "kind": "SCALAR", @@ -14808,7 +17050,7 @@ "deprecationReason": null }, { - "name": "facebookLink_in", + "name": "groupName_in", "description": null, "type": { "kind": "LIST", @@ -14824,7 +17066,7 @@ "deprecationReason": null }, { - "name": "facebookLink_not", + "name": "groupName_not", "description": null, "type": { "kind": "SCALAR", @@ -14836,7 +17078,7 @@ "deprecationReason": null }, { - "name": "facebookLink_not_contains", + "name": "groupName_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -14848,7 +17090,7 @@ "deprecationReason": null }, { - "name": "facebookLink_not_in", + "name": "groupName_not_in", "description": null, "type": { "kind": "LIST", @@ -14864,7 +17106,7 @@ "deprecationReason": null }, { - "name": "instagramLink", + "name": "internalTitle", "description": null, "type": { "kind": "SCALAR", @@ -14876,7 +17118,7 @@ "deprecationReason": null }, { - "name": "instagramLink_contains", + "name": "internalTitle_contains", "description": null, "type": { "kind": "SCALAR", @@ -14888,7 +17130,7 @@ "deprecationReason": null }, { - "name": "instagramLink_exists", + "name": "internalTitle_exists", "description": null, "type": { "kind": "SCALAR", @@ -14900,7 +17142,7 @@ "deprecationReason": null }, { - "name": "instagramLink_in", + "name": "internalTitle_in", "description": null, "type": { "kind": "LIST", @@ -14916,7 +17158,7 @@ "deprecationReason": null }, { - "name": "instagramLink_not", + "name": "internalTitle_not", "description": null, "type": { "kind": "SCALAR", @@ -14928,7 +17170,7 @@ "deprecationReason": null }, { - "name": "instagramLink_not_contains", + "name": "internalTitle_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -14940,7 +17182,7 @@ "deprecationReason": null }, { - "name": "instagramLink_not_in", + "name": "internalTitle_not_in", "description": null, "type": { "kind": "LIST", @@ -14955,6 +17197,113 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "sys", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SysFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "UNION", + "name": "MenuGroupGroupLink", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Page", + "ofType": null + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "MenuGroupGroupLinkFilter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MenuGroupGroupLinkFilter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MenuGroupGroupLinkFilter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentfulMetadata", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extraSection", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "cfextraSectionMultiTypeNestedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extraSectionCollection_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "internalName", "description": null, @@ -15048,19 +17397,7 @@ "deprecationReason": null }, { - "name": "legalLinks", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "cfMenuGroupNestedFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "legalLinks_exists", + "name": "pageContent_exists", "description": null, "type": { "kind": "SCALAR", @@ -15072,7 +17409,7 @@ "deprecationReason": null }, { - "name": "linkedinLink", + "name": "pageName", "description": null, "type": { "kind": "SCALAR", @@ -15084,7 +17421,7 @@ "deprecationReason": null }, { - "name": "linkedinLink_contains", + "name": "pageName_contains", "description": null, "type": { "kind": "SCALAR", @@ -15096,7 +17433,7 @@ "deprecationReason": null }, { - "name": "linkedinLink_exists", + "name": "pageName_exists", "description": null, "type": { "kind": "SCALAR", @@ -15108,7 +17445,7 @@ "deprecationReason": null }, { - "name": "linkedinLink_in", + "name": "pageName_in", "description": null, "type": { "kind": "LIST", @@ -15124,7 +17461,7 @@ "deprecationReason": null }, { - "name": "linkedinLink_not", + "name": "pageName_not", "description": null, "type": { "kind": "SCALAR", @@ -15136,7 +17473,7 @@ "deprecationReason": null }, { - "name": "linkedinLink_not_contains", + "name": "pageName_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -15148,7 +17485,7 @@ "deprecationReason": null }, { - "name": "linkedinLink_not_in", + "name": "pageName_not_in", "description": null, "type": { "kind": "LIST", @@ -15164,11 +17501,11 @@ "deprecationReason": null }, { - "name": "menuItems", + "name": "seo_exists", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "cfMenuGroupNestedFilter", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -15176,11 +17513,11 @@ "deprecationReason": null }, { - "name": "menuItemsCollection_exists", + "name": "slug", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15188,11 +17525,11 @@ "deprecationReason": null }, { - "name": "sys", + "name": "slug_contains", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SysFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15200,11 +17537,11 @@ "deprecationReason": null }, { - "name": "twitterLink", + "name": "slug_exists", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -15212,7 +17549,23 @@ "deprecationReason": null }, { - "name": "twitterLink_contains", + "name": "slug_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug_not", "description": null, "type": { "kind": "SCALAR", @@ -15224,11 +17577,11 @@ "deprecationReason": null }, { - "name": "twitterLink_exists", + "name": "slug_not_contains", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -15236,7 +17589,7 @@ "deprecationReason": null }, { - "name": "twitterLink_in", + "name": "slug_not_in", "description": null, "type": { "kind": "LIST", @@ -15252,11 +17605,11 @@ "deprecationReason": null }, { - "name": "twitterLink_not", + "name": "sys", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SysFilter", "ofType": null }, "defaultValue": null, @@ -15264,11 +17617,11 @@ "deprecationReason": null }, { - "name": "twitterLink_not_contains", + "name": "topSection", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "cftopSectionMultiTypeNestedFilter", "ofType": null }, "defaultValue": null, @@ -15276,16 +17629,12 @@ "deprecationReason": null }, { - "name": "twitterLink_not_in", + "name": "topSectionCollection_exists", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -15298,7 +17647,7 @@ }, { "kind": "OBJECT", - "name": "FooterMenuLinkingCollections", + "name": "MenuGroupLinkingCollections", "description": null, "fields": [ { @@ -15361,178 +17710,170 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FooterMenuMenuItemsCollection", - "description": null, - "fields": [ - { - "name": "items", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MenuGroup", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "skip", + "name": "footerMenuCollection", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MenuGroupLinkingCollectionsFooterMenuCollectionOrder", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "FooterMenuCollection", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FooterMenuMenuItemsCollectionOrder", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "groupName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalTitle_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalTitle_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_publishedVersion_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", + "name": "navigationMenuCollection", "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MenuGroupLinkingCollectionsNavigationMenuCollectionOrder", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "NavigationMenuCollection", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "FooterMenuOrder", + "name": "MenuGroupLinkingCollectionsFooterMenuCollectionOrder", "description": null, "fields": null, "inputFields": null, @@ -15649,134 +17990,71 @@ ], "possibleTypes": null }, - { - "kind": "SCALAR", - "name": "HexColor", - "description": "The 'HexColor' type represents color in `rgb:ffffff` string format.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "ENUM", - "name": "ImageFormat", + "name": "MenuGroupLinkingCollectionsNavigationMenuCollectionOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "AVIF", + "name": "internalName_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "JPG", - "description": "JPG image format.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "JPG_PROGRESSIVE", - "description": "Progressive JPG format stores multiple passes of an image in progressively higher detail.\n When a progressive image is loading, the viewer will first see a lower quality pixelated version which\n will gradually improve in detail, until the image is fully downloaded. This is to display an image as\n early as possible to make the layout look as designed.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PNG", - "description": "PNG image format", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PNG8", - "description": "8-bit PNG images support up to 256 colors and weigh less than the standard 24-bit PNG equivalent.\n The 8-bit PNG format is mostly used for simple images, such as icons or logos.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WEBP", - "description": "WebP image format.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ImageResizeFocus", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BOTTOM", - "description": "Focus the resizing on the bottom.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BOTTOM_LEFT", - "description": "Focus the resizing on the bottom left.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BOTTOM_RIGHT", - "description": "Focus the resizing on the bottom right.", + "name": "internalName_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "CENTER", - "description": "Focus the resizing on the center.", + "name": "sys_firstPublishedAt_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "FACE", - "description": "Focus the resizing on the largest face.", + "name": "sys_firstPublishedAt_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "FACES", - "description": "Focus the resizing on the area containing all the faces.", + "name": "sys_id_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "LEFT", - "description": "Focus the resizing on the left.", + "name": "sys_id_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "RIGHT", - "description": "Focus the resizing on the right.", + "name": "sys_publishedAt_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "TOP", - "description": "Focus the resizing on the top.", + "name": "sys_publishedAt_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "TOP_LEFT", - "description": "Focus the resizing on the top left.", + "name": "sys_publishedVersion_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "TOP_RIGHT", - "description": "Focus the resizing on the top right.", + "name": "sys_publishedVersion_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null } @@ -15785,182 +18063,91 @@ }, { "kind": "ENUM", - "name": "ImageResizeStrategy", + "name": "MenuGroupOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "CROP", - "description": "Crops a part of the original image to fit into the specified dimensions.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FILL", - "description": "Resizes the image to the specified dimensions, cropping the image if needed.", + "name": "groupName_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "FIT", - "description": "Resizes the image to fit into the specified dimensions.", + "name": "groupName_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "PAD", - "description": "Resizes the image to the specified dimensions, padding the image if needed.\n Uses desired background color as padding color.", + "name": "internalTitle_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "SCALE", - "description": "Resizes the image to the specified dimensions, changing the original aspect ratio if needed.", + "name": "internalTitle_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "THUMB", - "description": "Creates a thumbnail from the image.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImageTransformOptions", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "backgroundColor", - "description": "Desired background color, used with corner radius or `PAD` resize strategy.\n Defaults to transparent (for `PNG`, `PNG8` and `WEBP`) or white (for `JPG` and `JPG_PROGRESSIVE`).", - "type": { - "kind": "SCALAR", - "name": "HexColor", - "ofType": null - }, - "defaultValue": null, + "name": "sys_firstPublishedAt_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cornerRadius", - "description": "Desired corner radius in pixels.\n Results in an image with rounded corners (pass `-1` for a full circle/ellipse).\n Defaults to `0`. Uses desired background color as padding color,\n unless the format is `JPG` or `JPG_PROGRESSIVE` and resize strategy is `PAD`, then defaults to white.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, + "name": "sys_firstPublishedAt_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "format", - "description": "Desired image format. Defaults to the original image format.", - "type": { - "kind": "ENUM", - "name": "ImageFormat", - "ofType": null - }, - "defaultValue": null, + "name": "sys_id_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "height", - "description": "Desired height in pixels. Defaults to the original image height.", - "type": { - "kind": "SCALAR", - "name": "Dimension", - "ofType": null - }, - "defaultValue": null, + "name": "sys_id_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "quality", - "description": "Desired quality of the image in percents.\n Used for `PNG8`, `JPG`, `JPG_PROGRESSIVE` and `WEBP` formats.", - "type": { - "kind": "SCALAR", - "name": "Quality", - "ofType": null - }, - "defaultValue": null, + "name": "sys_publishedAt_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "resizeFocus", - "description": "Desired resize focus area. Defaults to `CENTER`.", - "type": { - "kind": "ENUM", - "name": "ImageResizeFocus", - "ofType": null - }, - "defaultValue": null, + "name": "sys_publishedAt_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "resizeStrategy", - "description": "Desired resize strategy. Defaults to `FIT`.", - "type": { - "kind": "ENUM", - "name": "ImageResizeStrategy", - "ofType": null - }, - "defaultValue": null, + "name": "sys_publishedVersion_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "width", - "description": "Desired width in pixels. Defaults to the original image width.", - "type": { - "kind": "SCALAR", - "name": "Dimension", - "ofType": null - }, - "defaultValue": null, + "name": "sys_publishedVersion_DESC", + "description": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "JSON", - "description": "The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "MenuGroup", - "description": "A group of items making up a section in the navigation menu [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/menuGroup)", + "name": "NavigationMenu", + "description": "Navigation menu in the header [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/navigationMenu)", "fields": [ { "name": "contentfulMetadata", @@ -15979,21 +18166,9 @@ "deprecationReason": null }, { - "name": "featuredPagesCollection", + "name": "internalName", "description": null, "args": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, { "name": "locale", "description": null, @@ -16005,38 +18180,31 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkedFrom", + "description": null, + "args": [ { - "name": "where", + "name": "allowedLocales", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "MenuGroupFeaturedPagesFilter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -16045,34 +18213,34 @@ ], "type": { "kind": "OBJECT", - "name": "MenuGroupFeaturedPagesCollection", + "name": "NavigationMenuLinkingCollections", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "groupLink", + "name": "menuItemsCollection", "description": null, "args": [ { - "name": "locale", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "100", "isDeprecated": false, "deprecationReason": null }, { - "name": "preview", + "name": "locale", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -16080,200 +18248,76 @@ "deprecationReason": null }, { - "name": "where", + "name": "order", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "MenuGroupGroupLinkFilter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "NavigationMenuMenuItemsCollectionOrder", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "UNION", - "name": "MenuGroupGroupLink", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupName", - "description": null, - "args": [ + }, { - "name": "locale", + "name": "preview", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalTitle", - "description": null, - "args": [ + }, { - "name": "locale", + "name": "skip", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null, + "defaultValue": "0", "isDeprecated": false, "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "linkedFrom", - "description": null, - "args": [ + }, { - "name": "allowedLocales", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "MenuGroupLinkingCollections", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sys", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Entry", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MenuGroupCollection", - "description": null, - "fields": [ - { - "name": "items", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MenuGroup", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MenuGroupFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "args": [], + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "NavigationMenuMenuItemsCollection", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "total", + "name": "sys", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Sys", "ofType": null } }, @@ -16282,13 +18326,19 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "MenuGroupFeaturedPagesCollection", + "name": "NavigationMenuCollection", "description": null, "fields": [ { @@ -16302,8 +18352,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "UNION", - "name": "MenuGroupFeaturedPagesItem", + "kind": "OBJECT", + "name": "NavigationMenu", "ofType": null } } @@ -16367,7 +18417,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "MenuGroupFeaturedPagesFilter", + "name": "NavigationMenuFilter", "description": null, "fields": null, "inputFields": [ @@ -16379,7 +18429,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "MenuGroupFeaturedPagesFilter", + "name": "NavigationMenuFilter", "ofType": null } }, @@ -16395,7 +18445,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "MenuGroupFeaturedPagesFilter", + "name": "NavigationMenuFilter", "ofType": null } }, @@ -16415,30 +18465,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "extraSection", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "cfextraSectionMultiTypeNestedFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extraSectionCollection_exists", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "internalName", "description": null, @@ -16532,11 +18558,11 @@ "deprecationReason": null }, { - "name": "pageContent_exists", + "name": "menuItems", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "cfMenuGroupNestedFilter", "ofType": null }, "defaultValue": null, @@ -16544,11 +18570,11 @@ "deprecationReason": null }, { - "name": "pageName", + "name": "menuItemsCollection_exists", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -16556,564 +18582,612 @@ "deprecationReason": null }, { - "name": "pageName_contains", + "name": "sys", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SysFilter", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NavigationMenuLinkingCollections", + "description": null, + "fields": [ { - "name": "pageName_exists", + "name": "entryCollection", "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "EntryCollection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NavigationMenuMenuItemsCollection", + "description": null, + "fields": [ { - "name": "pageName_in", + "name": "items", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MenuGroup", + "ofType": null + } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageName_not", + "name": "limit", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageName_not_contains", + "name": "skip", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageName_not_in", + "name": "total", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "NavigationMenuMenuItemsCollectionOrder", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "groupName_ASC", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "seo_exists", + "name": "groupName_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug", + "name": "internalTitle_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_contains", + "name": "internalTitle_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_exists", + "name": "sys_firstPublishedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_in", + "name": "sys_firstPublishedAt_DESC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not", + "name": "sys_id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not_contains", + "name": "sys_id_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "slug_not_in", + "name": "sys_publishedAt_ASC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys", + "name": "sys_publishedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SysFilter", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "topSection", + "name": "sys_publishedVersion_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "cftopSectionMultiTypeNestedFilter", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "topSectionCollection_exists", + "name": "sys_publishedVersion_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "UNION", - "name": "MenuGroupFeaturedPagesItem", + "kind": "ENUM", + "name": "NavigationMenuOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Page", - "ofType": null - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "MenuGroupFilter", - "description": null, - "fields": null, - "inputFields": [ + "enumValues": [ { - "name": "AND", + "name": "internalName_ASC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MenuGroupFilter", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "internalName_DESC", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MenuGroupFilter", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "contentfulMetadata", + "name": "sys_firstPublishedAt_ASC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ContentfulMetadataFilter", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "featuredPages", + "name": "sys_firstPublishedAt_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "cffeaturedPagesMultiTypeNestedFilter", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "featuredPagesCollection_exists", + "name": "sys_id_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "groupLink", + "name": "sys_id_DESC", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "cfgroupLinkMultiTypeNestedFilter", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "groupLink_exists", + "name": "sys_publishedAt_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "groupName", + "name": "sys_publishedAt_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "groupName_contains", + "name": "sys_publishedVersion_ASC", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "groupName_exists", + "name": "sys_publishedVersion_DESC", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NtAudience", + "description": "Ninetailed Audience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_audience)", + "fields": [ { - "name": "groupName_in", + "name": "contentfulMetadata", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ContentfulMetadata", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "groupName_not", + "name": "linkedFrom", "description": null, + "args": [ + { + "name": "allowedLocales", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "NtAudienceLinkingCollections", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "groupName_not_contains", + "name": "ntAudienceId", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "groupName_not_in", + "name": "ntDescription", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalTitle", + "name": "ntMetadata", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalTitle_contains", + "name": "ntName", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalTitle_exists", + "name": "ntRules", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "JSON", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalTitle_in", + "name": "sys", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Sys", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "internalTitle_not", + "kind": "INTERFACE", + "name": "Entry", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NtAudienceCollection", + "description": null, + "fields": [ + { + "name": "items", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NtAudience", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalTitle_not_contains", + "name": "limit", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalTitle_not_in", + "name": "skip", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys", + "name": "total", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SysFilter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "UNION", - "name": "MenuGroupGroupLink", - "description": null, - "fields": null, "inputFields": null, - "interfaces": null, + "interfaces": [], "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Page", - "ofType": null - } - ] + "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "MenuGroupGroupLinkFilter", + "name": "NtAudienceFilter", "description": null, "fields": null, "inputFields": [ @@ -17125,7 +19199,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "MenuGroupGroupLinkFilter", + "name": "NtAudienceFilter", "ofType": null } }, @@ -17141,7 +19215,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "MenuGroupGroupLinkFilter", + "name": "NtAudienceFilter", "ofType": null } }, @@ -17162,31 +19236,7 @@ "deprecationReason": null }, { - "name": "extraSection", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "cfextraSectionMultiTypeNestedFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extraSectionCollection_exists", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalName", + "name": "nt_audience_id", "description": null, "type": { "kind": "SCALAR", @@ -17198,7 +19248,7 @@ "deprecationReason": null }, { - "name": "internalName_contains", + "name": "nt_audience_id_contains", "description": null, "type": { "kind": "SCALAR", @@ -17210,7 +19260,7 @@ "deprecationReason": null }, { - "name": "internalName_exists", + "name": "nt_audience_id_exists", "description": null, "type": { "kind": "SCALAR", @@ -17222,7 +19272,7 @@ "deprecationReason": null }, { - "name": "internalName_in", + "name": "nt_audience_id_in", "description": null, "type": { "kind": "LIST", @@ -17238,7 +19288,7 @@ "deprecationReason": null }, { - "name": "internalName_not", + "name": "nt_audience_id_not", "description": null, "type": { "kind": "SCALAR", @@ -17250,7 +19300,7 @@ "deprecationReason": null }, { - "name": "internalName_not_contains", + "name": "nt_audience_id_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -17262,7 +19312,7 @@ "deprecationReason": null }, { - "name": "internalName_not_in", + "name": "nt_audience_id_not_in", "description": null, "type": { "kind": "LIST", @@ -17278,19 +19328,7 @@ "deprecationReason": null }, { - "name": "pageContent_exists", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageName", + "name": "nt_description", "description": null, "type": { "kind": "SCALAR", @@ -17302,7 +19340,7 @@ "deprecationReason": null }, { - "name": "pageName_contains", + "name": "nt_description_contains", "description": null, "type": { "kind": "SCALAR", @@ -17314,7 +19352,7 @@ "deprecationReason": null }, { - "name": "pageName_exists", + "name": "nt_description_exists", "description": null, "type": { "kind": "SCALAR", @@ -17326,7 +19364,7 @@ "deprecationReason": null }, { - "name": "pageName_in", + "name": "nt_description_in", "description": null, "type": { "kind": "LIST", @@ -17342,7 +19380,7 @@ "deprecationReason": null }, { - "name": "pageName_not", + "name": "nt_description_not", "description": null, "type": { "kind": "SCALAR", @@ -17354,7 +19392,7 @@ "deprecationReason": null }, { - "name": "pageName_not_contains", + "name": "nt_description_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -17366,7 +19404,7 @@ "deprecationReason": null }, { - "name": "pageName_not_in", + "name": "nt_description_not_in", "description": null, "type": { "kind": "LIST", @@ -17382,7 +19420,7 @@ "deprecationReason": null }, { - "name": "seo_exists", + "name": "nt_metadata_exists", "description": null, "type": { "kind": "SCALAR", @@ -17394,7 +19432,7 @@ "deprecationReason": null }, { - "name": "slug", + "name": "nt_name", "description": null, "type": { "kind": "SCALAR", @@ -17406,7 +19444,7 @@ "deprecationReason": null }, { - "name": "slug_contains", + "name": "nt_name_contains", "description": null, "type": { "kind": "SCALAR", @@ -17418,7 +19456,7 @@ "deprecationReason": null }, { - "name": "slug_exists", + "name": "nt_name_exists", "description": null, "type": { "kind": "SCALAR", @@ -17430,7 +19468,7 @@ "deprecationReason": null }, { - "name": "slug_in", + "name": "nt_name_in", "description": null, "type": { "kind": "LIST", @@ -17446,7 +19484,7 @@ "deprecationReason": null }, { - "name": "slug_not", + "name": "nt_name_not", "description": null, "type": { "kind": "SCALAR", @@ -17458,7 +19496,7 @@ "deprecationReason": null }, { - "name": "slug_not_contains", + "name": "nt_name_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -17470,7 +19508,7 @@ "deprecationReason": null }, { - "name": "slug_not_in", + "name": "nt_name_not_in", "description": null, "type": { "kind": "LIST", @@ -17486,11 +19524,11 @@ "deprecationReason": null }, { - "name": "sys", + "name": "nt_rules_exists", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SysFilter", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -17498,23 +19536,11 @@ "deprecationReason": null }, { - "name": "topSection", + "name": "sys", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "cftopSectionMultiTypeNestedFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "topSectionCollection_exists", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "SysFilter", "ofType": null }, "defaultValue": null, @@ -17528,7 +19554,7 @@ }, { "kind": "OBJECT", - "name": "MenuGroupLinkingCollections", + "name": "NtAudienceLinkingCollections", "description": null, "fields": [ { @@ -17593,84 +19619,7 @@ "deprecationReason": null }, { - "name": "footerMenuCollection", - "description": null, - "args": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MenuGroupLinkingCollectionsFooterMenuCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "FooterMenuCollection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "navigationMenuCollection", + "name": "ntExperienceCollection", "description": null, "args": [ { @@ -17705,7 +19654,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MenuGroupLinkingCollectionsNavigationMenuCollectionOrder", + "name": "NtAudienceLinkingCollectionsNtExperienceCollectionOrder", "ofType": null } }, @@ -17740,7 +19689,7 @@ ], "type": { "kind": "OBJECT", - "name": "NavigationMenuCollection", + "name": "NtExperienceCollection", "ofType": null }, "isDeprecated": false, @@ -17754,56 +19703,44 @@ }, { "kind": "ENUM", - "name": "MenuGroupLinkingCollectionsFooterMenuCollectionOrder", + "name": "NtAudienceLinkingCollectionsNtExperienceCollectionOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "facebookLink_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "facebookLink_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "instagramLink_ASC", + "name": "nt_experience_id_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "instagramLink_DESC", + "name": "nt_experience_id_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_ASC", + "name": "nt_name_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_DESC", + "name": "nt_name_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkedinLink_ASC", + "name": "nt_type_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkedinLink_DESC", + "name": "nt_type_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -17855,38 +19792,38 @@ "description": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "twitterLink_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "twitterLink_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null } ], "possibleTypes": null }, { "kind": "ENUM", - "name": "MenuGroupLinkingCollectionsNavigationMenuCollectionOrder", + "name": "NtAudienceOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "internalName_ASC", + "name": "nt_audience_id_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_DESC", + "name": "nt_audience_id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -17943,111 +19880,206 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "MenuGroupOrder", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "groupName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalTitle_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalTitle_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "NtExperience", + "description": "Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience)", + "fields": [ { - "name": "sys_firstPublishedAt_DESC", + "name": "contentfulMetadata", "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContentfulMetadata", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_ASC", + "name": "linkedFrom", "description": null, + "args": [ + { + "name": "allowedLocales", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "NtExperienceLinkingCollections", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_id_DESC", + "name": "ntAudience", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NtAudienceFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "NtAudience", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_ASC", + "name": "ntConfig", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_DESC", + "name": "ntDescription", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_ASC", + "name": "ntExperienceId", "description": null, + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NavigationMenu", - "description": "Navigation menu in the header [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/navigationMenu)", - "fields": [ - { - "name": "contentfulMetadata", + "name": "ntMetadata", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ContentfulMetadata", - "ofType": null + "args": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName", + "name": "ntName", "description": null, "args": [ { @@ -18072,20 +20104,16 @@ "deprecationReason": null }, { - "name": "linkedFrom", + "name": "ntType", "description": null, "args": [ { - "name": "allowedLocales", + "name": "locale", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -18093,15 +20121,15 @@ } ], "type": { - "kind": "OBJECT", - "name": "NavigationMenuLinkingCollections", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "menuItemsCollection", + "name": "ntVariantsCollection", "description": null, "args": [ { @@ -18128,22 +20156,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "order", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "NavigationMenuMenuItemsCollectionOrder", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "preview", "description": null, @@ -18167,23 +20179,11 @@ "defaultValue": "0", "isDeprecated": false, "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MenuGroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "NavigationMenuMenuItemsCollection", + "name": "NtExperienceNt_variantsCollection", "ofType": null }, "isDeprecated": false, @@ -18219,7 +20219,7 @@ }, { "kind": "OBJECT", - "name": "NavigationMenuCollection", + "name": "NtExperienceCollection", "description": null, "fields": [ { @@ -18234,7 +20234,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "NavigationMenu", + "name": "NtExperience", "ofType": null } } @@ -18298,7 +20298,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "NavigationMenuFilter", + "name": "NtExperienceFilter", "description": null, "fields": null, "inputFields": [ @@ -18310,7 +20310,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NavigationMenuFilter", + "name": "NtExperienceFilter", "ofType": null } }, @@ -18326,7 +20326,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NavigationMenuFilter", + "name": "NtExperienceFilter", "ofType": null } }, @@ -18347,7 +20347,43 @@ "deprecationReason": null }, { - "name": "internalName", + "name": "nt_audience", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "cfNtAudienceNestedFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_audience_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_config_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_description", "description": null, "type": { "kind": "SCALAR", @@ -18359,7 +20395,7 @@ "deprecationReason": null }, { - "name": "internalName_contains", + "name": "nt_description_contains", "description": null, "type": { "kind": "SCALAR", @@ -18371,7 +20407,7 @@ "deprecationReason": null }, { - "name": "internalName_exists", + "name": "nt_description_exists", "description": null, "type": { "kind": "SCALAR", @@ -18383,7 +20419,7 @@ "deprecationReason": null }, { - "name": "internalName_in", + "name": "nt_description_in", "description": null, "type": { "kind": "LIST", @@ -18399,7 +20435,7 @@ "deprecationReason": null }, { - "name": "internalName_not", + "name": "nt_description_not", "description": null, "type": { "kind": "SCALAR", @@ -18411,7 +20447,7 @@ "deprecationReason": null }, { - "name": "internalName_not_contains", + "name": "nt_description_not_contains", "description": null, "type": { "kind": "SCALAR", @@ -18423,7 +20459,7 @@ "deprecationReason": null }, { - "name": "internalName_not_in", + "name": "nt_description_not_in", "description": null, "type": { "kind": "LIST", @@ -18439,11 +20475,11 @@ "deprecationReason": null }, { - "name": "menuItems", + "name": "nt_experience_id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "cfMenuGroupNestedFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18451,7 +20487,283 @@ "deprecationReason": null }, { - "name": "menuItemsCollection_exists", + "name": "nt_experience_id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_experience_id_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_experience_id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_experience_id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_experience_id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_experience_id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_metadata_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_type_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_type_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_type_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_type_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_type_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_type_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_variantsCollection_exists", "description": null, "type": { "kind": "SCALAR", @@ -18481,7 +20793,7 @@ }, { "kind": "OBJECT", - "name": "NavigationMenuLinkingCollections", + "name": "NtExperienceLinkingCollections", "description": null, "fields": [ { @@ -18553,7 +20865,7 @@ }, { "kind": "OBJECT", - "name": "NavigationMenuMenuItemsCollection", + "name": "NtExperienceNt_variantsCollection", "description": null, "fields": [ { @@ -18567,8 +20879,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "MenuGroup", + "kind": "INTERFACE", + "name": "Entry", "ofType": null } } @@ -18632,103 +20944,44 @@ }, { "kind": "ENUM", - "name": "NavigationMenuMenuItemsCollectionOrder", + "name": "NtExperienceOrder", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "groupName_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupName_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalTitle_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "internalTitle_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_firstPublishedAt_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sys_id_DESC", + "name": "nt_experience_id_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_ASC", + "name": "nt_experience_id_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedAt_DESC", + "name": "nt_name_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_ASC", + "name": "nt_name_DESC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sys_publishedVersion_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "NavigationMenuOrder", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "internalName_ASC", + "name": "nt_type_ASC", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "internalName_DESC", + "name": "nt_type_DESC", "description": null, "isDeprecated": false, "deprecationReason": null @@ -21397,6 +23650,59 @@ "name": "Query", "description": null, "fields": [ + { + "name": "_node", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "_Node", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "asset", "description": null, @@ -21486,7 +23792,291 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AssetOrder", + "name": "AssetOrder", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AssetFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AssetCollection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "componentCta", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentCta", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "componentCtaCollection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentCtaOrder", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentCtaFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentCtaCollection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "componentDuplex", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ComponentDuplex", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "componentDuplexCollection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentDuplexOrder", "ofType": null } }, @@ -21523,7 +24113,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "AssetFilter", + "name": "ComponentDuplexFilter", "ofType": null }, "defaultValue": null, @@ -21533,14 +24123,14 @@ ], "type": { "kind": "OBJECT", - "name": "AssetCollection", + "name": "ComponentDuplexCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentCta", + "name": "componentHeroBanner", "description": null, "args": [ { @@ -21586,14 +24176,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentCta", + "name": "ComponentHeroBanner", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentCtaCollection", + "name": "componentHeroBannerCollection", "description": null, "args": [ { @@ -21628,7 +24218,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentCtaOrder", + "name": "ComponentHeroBannerOrder", "ofType": null } }, @@ -21665,7 +24255,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ComponentCtaFilter", + "name": "ComponentHeroBannerFilter", "ofType": null }, "defaultValue": null, @@ -21675,14 +24265,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentCtaCollection", + "name": "ComponentHeroBannerCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentDuplex", + "name": "componentInfoBlock", "description": null, "args": [ { @@ -21728,14 +24318,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentDuplex", + "name": "ComponentInfoBlock", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentDuplexCollection", + "name": "componentInfoBlockCollection", "description": null, "args": [ { @@ -21770,7 +24360,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentDuplexOrder", + "name": "ComponentInfoBlockOrder", "ofType": null } }, @@ -21807,7 +24397,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ComponentDuplexFilter", + "name": "ComponentInfoBlockFilter", "ofType": null }, "defaultValue": null, @@ -21817,14 +24407,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentDuplexCollection", + "name": "ComponentInfoBlockCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentHeroBanner", + "name": "componentProductTable", "description": null, "args": [ { @@ -21870,14 +24460,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentHeroBanner", + "name": "ComponentProductTable", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentHeroBannerCollection", + "name": "componentProductTableCollection", "description": null, "args": [ { @@ -21912,7 +24502,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentHeroBannerOrder", + "name": "ComponentProductTableOrder", "ofType": null } }, @@ -21949,7 +24539,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ComponentHeroBannerFilter", + "name": "ComponentProductTableFilter", "ofType": null }, "defaultValue": null, @@ -21959,14 +24549,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentHeroBannerCollection", + "name": "ComponentProductTableCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentInfoBlock", + "name": "componentQuote", "description": null, "args": [ { @@ -22012,14 +24602,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentInfoBlock", + "name": "ComponentQuote", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentInfoBlockCollection", + "name": "componentQuoteCollection", "description": null, "args": [ { @@ -22054,7 +24644,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentInfoBlockOrder", + "name": "ComponentQuoteOrder", "ofType": null } }, @@ -22091,7 +24681,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ComponentInfoBlockFilter", + "name": "ComponentQuoteFilter", "ofType": null }, "defaultValue": null, @@ -22101,14 +24691,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentInfoBlockCollection", + "name": "ComponentQuoteCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentProductTable", + "name": "componentTextBlock", "description": null, "args": [ { @@ -22154,14 +24744,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentProductTable", + "name": "ComponentTextBlock", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentProductTableCollection", + "name": "componentTextBlockCollection", "description": null, "args": [ { @@ -22196,7 +24786,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentProductTableOrder", + "name": "ComponentTextBlockOrder", "ofType": null } }, @@ -22233,7 +24823,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ComponentProductTableFilter", + "name": "ComponentTextBlockFilter", "ofType": null }, "defaultValue": null, @@ -22243,14 +24833,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentProductTableCollection", + "name": "ComponentTextBlockCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentQuote", + "name": "editorTest", "description": null, "args": [ { @@ -22296,14 +24886,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentQuote", + "name": "EditorTest", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentQuoteCollection", + "name": "editorTestCollection", "description": null, "args": [ { @@ -22338,7 +24928,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentQuoteOrder", + "name": "EditorTestOrder", "ofType": null } }, @@ -22375,7 +24965,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ComponentQuoteFilter", + "name": "EditorTestFilter", "ofType": null }, "defaultValue": null, @@ -22385,14 +24975,103 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentQuoteCollection", + "name": "EditorTestCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentTextBlock", + "name": "entryCollection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EntryOrder", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EntryFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "EntryCollection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "footerMenu", "description": null, "args": [ { @@ -22438,14 +25117,14 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentTextBlock", + "name": "FooterMenu", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "componentTextBlockCollection", + "name": "footerMenuCollection", "description": null, "args": [ { @@ -22480,7 +25159,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ComponentTextBlockOrder", + "name": "FooterMenuOrder", "ofType": null } }, @@ -22517,7 +25196,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ComponentTextBlockFilter", + "name": "FooterMenuFilter", "ofType": null }, "defaultValue": null, @@ -22527,14 +25206,67 @@ ], "type": { "kind": "OBJECT", - "name": "ComponentTextBlockCollection", + "name": "FooterMenuCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "entryCollection", + "name": "menuGroup", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "MenuGroup", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "menuGroupCollection", "description": null, "args": [ { @@ -22569,7 +25301,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EntryOrder", + "name": "MenuGroupOrder", "ofType": null } }, @@ -22606,7 +25338,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "EntryFilter", + "name": "MenuGroupFilter", "ofType": null }, "defaultValue": null, @@ -22616,14 +25348,14 @@ ], "type": { "kind": "OBJECT", - "name": "EntryCollection", + "name": "MenuGroupCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "footerMenu", + "name": "navigationMenu", "description": null, "args": [ { @@ -22669,14 +25401,14 @@ ], "type": { "kind": "OBJECT", - "name": "FooterMenu", + "name": "NavigationMenu", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "footerMenuCollection", + "name": "navigationMenuCollection", "description": null, "args": [ { @@ -22711,7 +25443,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "FooterMenuOrder", + "name": "NavigationMenuOrder", "ofType": null } }, @@ -22748,7 +25480,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "FooterMenuFilter", + "name": "NavigationMenuFilter", "ofType": null }, "defaultValue": null, @@ -22758,14 +25490,14 @@ ], "type": { "kind": "OBJECT", - "name": "FooterMenuCollection", + "name": "NavigationMenuCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "menuGroup", + "name": "ntAudience", "description": null, "args": [ { @@ -22811,14 +25543,14 @@ ], "type": { "kind": "OBJECT", - "name": "MenuGroup", + "name": "NtAudience", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "menuGroupCollection", + "name": "ntAudienceCollection", "description": null, "args": [ { @@ -22853,7 +25585,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MenuGroupOrder", + "name": "NtAudienceOrder", "ofType": null } }, @@ -22890,7 +25622,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "MenuGroupFilter", + "name": "NtAudienceFilter", "ofType": null }, "defaultValue": null, @@ -22900,14 +25632,14 @@ ], "type": { "kind": "OBJECT", - "name": "MenuGroupCollection", + "name": "NtAudienceCollection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "navigationMenu", + "name": "ntExperience", "description": null, "args": [ { @@ -22953,14 +25685,14 @@ ], "type": { "kind": "OBJECT", - "name": "NavigationMenu", + "name": "NtExperience", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "navigationMenuCollection", + "name": "ntExperienceCollection", "description": null, "args": [ { @@ -22995,7 +25727,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "NavigationMenuOrder", + "name": "NtExperienceOrder", "ofType": null } }, @@ -23032,7 +25764,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "NavigationMenuFilter", + "name": "NtExperienceFilter", "ofType": null }, "defaultValue": null, @@ -23042,7 +25774,7 @@ ], "type": { "kind": "OBJECT", - "name": "NavigationMenuCollection", + "name": "NtExperienceCollection", "ofType": null }, "isDeprecated": false, @@ -26124,6 +28856,54 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "hyperlink", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inline", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -27445,6 +30225,54 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "hyperlink", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inline", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -28876,6 +31704,54 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "hyperlink", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inline", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -29959,6 +32835,54 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "hyperlink", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inline", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -30301,6 +33225,54 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "hyperlink", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inline", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -31420,6 +34392,33 @@ ], "possibleTypes": null }, + { + "kind": "INTERFACE", + "name": "_Node", + "description": null, + "fields": [ + { + "name": "_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, { "kind": "OBJECT", "name": "__Directive", @@ -32602,6 +35601,373 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "cfNtAudienceNestedFilter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "cfNtAudienceNestedFilter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "cfNtAudienceNestedFilter", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentfulMetadata", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentfulMetadataFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_audience_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_audience_id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_audience_id_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_audience_id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_audience_id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_audience_id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_audience_id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_description_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_description_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_description_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_description_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_description_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_description_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_metadata_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_name_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nt_rules_exists", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sys", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SysFilter", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "cfSeoNestedFilter", diff --git a/gql/graphql.ts b/gql/graphql.ts index 93be324..73ffb31 100644 --- a/gql/graphql.ts +++ b/gql/graphql.ts @@ -196,7 +196,6 @@ export type AssetLinkingCollections = { export type AssetLinkingCollectionsComponentDuplexCollectionArgs = { limit?: InputMaybe; locale?: InputMaybe; - order?: InputMaybe>>; preview?: InputMaybe; skip?: InputMaybe; }; @@ -205,7 +204,6 @@ export type AssetLinkingCollectionsComponentDuplexCollectionArgs = { export type AssetLinkingCollectionsComponentHeroBannerCollectionArgs = { limit?: InputMaybe; locale?: InputMaybe; - order?: InputMaybe>>; preview?: InputMaybe; skip?: InputMaybe; }; @@ -214,7 +212,6 @@ export type AssetLinkingCollectionsComponentHeroBannerCollectionArgs = { export type AssetLinkingCollectionsComponentInfoBlockCollectionArgs = { limit?: InputMaybe; locale?: InputMaybe; - order?: InputMaybe>>; preview?: InputMaybe; skip?: InputMaybe; }; @@ -223,7 +220,6 @@ export type AssetLinkingCollectionsComponentInfoBlockCollectionArgs = { export type AssetLinkingCollectionsComponentQuoteCollectionArgs = { limit?: InputMaybe; locale?: InputMaybe; - order?: InputMaybe>>; preview?: InputMaybe; skip?: InputMaybe; }; @@ -240,7 +236,6 @@ export type AssetLinkingCollectionsEntryCollectionArgs = { export type AssetLinkingCollectionsSeoCollectionArgs = { limit?: InputMaybe; locale?: InputMaybe; - order?: InputMaybe>>; preview?: InputMaybe; skip?: InputMaybe; }; @@ -249,7 +244,6 @@ export type AssetLinkingCollectionsSeoCollectionArgs = { export type AssetLinkingCollectionsTopicBusinessInfoCollectionArgs = { limit?: InputMaybe; locale?: InputMaybe; - order?: InputMaybe>>; preview?: InputMaybe; skip?: InputMaybe; }; @@ -258,7 +252,6 @@ export type AssetLinkingCollectionsTopicBusinessInfoCollectionArgs = { export type AssetLinkingCollectionsTopicPersonCollectionArgs = { limit?: InputMaybe; locale?: InputMaybe; - order?: InputMaybe>>; preview?: InputMaybe; skip?: InputMaybe; }; @@ -267,169 +260,10 @@ export type AssetLinkingCollectionsTopicPersonCollectionArgs = { export type AssetLinkingCollectionsTopicProductCollectionArgs = { limit?: InputMaybe; locale?: InputMaybe; - order?: InputMaybe>>; preview?: InputMaybe; skip?: InputMaybe; }; -export enum AssetLinkingCollectionsComponentDuplexCollectionOrder { - ColorPaletteAsc = 'colorPalette_ASC', - ColorPaletteDesc = 'colorPalette_DESC', - ContainerLayoutAsc = 'containerLayout_ASC', - ContainerLayoutDesc = 'containerLayout_DESC', - CtaTextAsc = 'ctaText_ASC', - CtaTextDesc = 'ctaText_DESC', - HeadlineAsc = 'headline_ASC', - HeadlineDesc = 'headline_DESC', - ImageStyleAsc = 'imageStyle_ASC', - ImageStyleDesc = 'imageStyle_DESC', - InternalNameAsc = 'internalName_ASC', - InternalNameDesc = 'internalName_DESC', - SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', - SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', - SysIdAsc = 'sys_id_ASC', - SysIdDesc = 'sys_id_DESC', - SysPublishedAtAsc = 'sys_publishedAt_ASC', - SysPublishedAtDesc = 'sys_publishedAt_DESC', - SysPublishedVersionAsc = 'sys_publishedVersion_ASC', - SysPublishedVersionDesc = 'sys_publishedVersion_DESC' -} - -export enum AssetLinkingCollectionsComponentHeroBannerCollectionOrder { - ColorPaletteAsc = 'colorPalette_ASC', - ColorPaletteDesc = 'colorPalette_DESC', - CtaTextAsc = 'ctaText_ASC', - CtaTextDesc = 'ctaText_DESC', - HeadlineAsc = 'headline_ASC', - HeadlineDesc = 'headline_DESC', - HeroSizeAsc = 'heroSize_ASC', - HeroSizeDesc = 'heroSize_DESC', - ImageStyleAsc = 'imageStyle_ASC', - ImageStyleDesc = 'imageStyle_DESC', - InternalNameAsc = 'internalName_ASC', - InternalNameDesc = 'internalName_DESC', - SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', - SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', - SysIdAsc = 'sys_id_ASC', - SysIdDesc = 'sys_id_DESC', - SysPublishedAtAsc = 'sys_publishedAt_ASC', - SysPublishedAtDesc = 'sys_publishedAt_DESC', - SysPublishedVersionAsc = 'sys_publishedVersion_ASC', - SysPublishedVersionDesc = 'sys_publishedVersion_DESC' -} - -export enum AssetLinkingCollectionsComponentInfoBlockCollectionOrder { - ColorPaletteAsc = 'colorPalette_ASC', - ColorPaletteDesc = 'colorPalette_DESC', - HeadlineAsc = 'headline_ASC', - HeadlineDesc = 'headline_DESC', - InternalNameAsc = 'internalName_ASC', - InternalNameDesc = 'internalName_DESC', - SublineAsc = 'subline_ASC', - SublineDesc = 'subline_DESC', - SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', - SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', - SysIdAsc = 'sys_id_ASC', - SysIdDesc = 'sys_id_DESC', - SysPublishedAtAsc = 'sys_publishedAt_ASC', - SysPublishedAtDesc = 'sys_publishedAt_DESC', - SysPublishedVersionAsc = 'sys_publishedVersion_ASC', - SysPublishedVersionDesc = 'sys_publishedVersion_DESC' -} - -export enum AssetLinkingCollectionsComponentQuoteCollectionOrder { - ColorPaletteAsc = 'colorPalette_ASC', - ColorPaletteDesc = 'colorPalette_DESC', - ImagePositionAsc = 'imagePosition_ASC', - ImagePositionDesc = 'imagePosition_DESC', - InternalNameAsc = 'internalName_ASC', - InternalNameDesc = 'internalName_DESC', - QuoteAlignmentAsc = 'quoteAlignment_ASC', - QuoteAlignmentDesc = 'quoteAlignment_DESC', - SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', - SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', - SysIdAsc = 'sys_id_ASC', - SysIdDesc = 'sys_id_DESC', - SysPublishedAtAsc = 'sys_publishedAt_ASC', - SysPublishedAtDesc = 'sys_publishedAt_DESC', - SysPublishedVersionAsc = 'sys_publishedVersion_ASC', - SysPublishedVersionDesc = 'sys_publishedVersion_DESC' -} - -export enum AssetLinkingCollectionsSeoCollectionOrder { - DescriptionAsc = 'description_ASC', - DescriptionDesc = 'description_DESC', - NameAsc = 'name_ASC', - NameDesc = 'name_DESC', - NoFollowAsc = 'noFollow_ASC', - NoFollowDesc = 'noFollow_DESC', - NoIndexAsc = 'noIndex_ASC', - NoIndexDesc = 'noIndex_DESC', - SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', - SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', - SysIdAsc = 'sys_id_ASC', - SysIdDesc = 'sys_id_DESC', - SysPublishedAtAsc = 'sys_publishedAt_ASC', - SysPublishedAtDesc = 'sys_publishedAt_DESC', - SysPublishedVersionAsc = 'sys_publishedVersion_ASC', - SysPublishedVersionDesc = 'sys_publishedVersion_DESC', - TitleAsc = 'title_ASC', - TitleDesc = 'title_DESC' -} - -export enum AssetLinkingCollectionsTopicBusinessInfoCollectionOrder { - InternalNameAsc = 'internalName_ASC', - InternalNameDesc = 'internalName_DESC', - NameAsc = 'name_ASC', - NameDesc = 'name_DESC', - SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', - SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', - SysIdAsc = 'sys_id_ASC', - SysIdDesc = 'sys_id_DESC', - SysPublishedAtAsc = 'sys_publishedAt_ASC', - SysPublishedAtDesc = 'sys_publishedAt_DESC', - SysPublishedVersionAsc = 'sys_publishedVersion_ASC', - SysPublishedVersionDesc = 'sys_publishedVersion_DESC' -} - -export enum AssetLinkingCollectionsTopicPersonCollectionOrder { - CardStyleAsc = 'cardStyle_ASC', - CardStyleDesc = 'cardStyle_DESC', - InternalNameAsc = 'internalName_ASC', - InternalNameDesc = 'internalName_DESC', - LocationAsc = 'location_ASC', - LocationDesc = 'location_DESC', - NameAsc = 'name_ASC', - NameDesc = 'name_DESC', - SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', - SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', - SysIdAsc = 'sys_id_ASC', - SysIdDesc = 'sys_id_DESC', - SysPublishedAtAsc = 'sys_publishedAt_ASC', - SysPublishedAtDesc = 'sys_publishedAt_DESC', - SysPublishedVersionAsc = 'sys_publishedVersion_ASC', - SysPublishedVersionDesc = 'sys_publishedVersion_DESC', - WebsiteAsc = 'website_ASC', - WebsiteDesc = 'website_DESC' -} - -export enum AssetLinkingCollectionsTopicProductCollectionOrder { - InternalNameAsc = 'internalName_ASC', - InternalNameDesc = 'internalName_DESC', - NameAsc = 'name_ASC', - NameDesc = 'name_DESC', - PriceAsc = 'price_ASC', - PriceDesc = 'price_DESC', - SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', - SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', - SysIdAsc = 'sys_id_ASC', - SysIdDesc = 'sys_id_DESC', - SysPublishedAtAsc = 'sys_publishedAt_ASC', - SysPublishedAtDesc = 'sys_publishedAt_DESC', - SysPublishedVersionAsc = 'sys_publishedVersion_ASC', - SysPublishedVersionDesc = 'sys_publishedVersion_DESC' -} - export enum AssetOrder { ContentTypeAsc = 'contentType_ASC', ContentTypeDesc = 'contentType_DESC', @@ -661,6 +495,8 @@ export type ComponentCtaSublineLinks = { export type ComponentCtaSublineResources = { __typename?: 'ComponentCtaSublineResources'; block: Array; + hyperlink: Array; + inline: Array; }; export type ComponentCtaTargetPage = Page; @@ -773,6 +609,8 @@ export type ComponentDuplexBodyTextLinks = { export type ComponentDuplexBodyTextResources = { __typename?: 'ComponentDuplexBodyTextResources'; block: Array; + hyperlink: Array; + inline: Array; }; export type ComponentDuplexCollection = { @@ -1002,6 +840,8 @@ export type ComponentHeroBannerBodyTextLinks = { export type ComponentHeroBannerBodyTextResources = { __typename?: 'ComponentHeroBannerBodyTextResources'; block: Array; + hyperlink: Array; + inline: Array; }; export type ComponentHeroBannerCollection = { @@ -1239,6 +1079,8 @@ export type ComponentInfoBlockBlock1BodyLinks = { export type ComponentInfoBlockBlock1BodyResources = { __typename?: 'ComponentInfoBlockBlock1BodyResources'; block: Array; + hyperlink: Array; + inline: Array; }; export type ComponentInfoBlockBlock2Body = { @@ -1270,6 +1112,8 @@ export type ComponentInfoBlockBlock2BodyLinks = { export type ComponentInfoBlockBlock2BodyResources = { __typename?: 'ComponentInfoBlockBlock2BodyResources'; block: Array; + hyperlink: Array; + inline: Array; }; export type ComponentInfoBlockBlock3Body = { @@ -1301,6 +1145,8 @@ export type ComponentInfoBlockBlock3BodyLinks = { export type ComponentInfoBlockBlock3BodyResources = { __typename?: 'ComponentInfoBlockBlock3BodyResources'; block: Array; + hyperlink: Array; + inline: Array; }; export type ComponentInfoBlockCollection = { @@ -1768,6 +1614,8 @@ export type ComponentQuoteQuoteLinks = { export type ComponentQuoteQuoteResources = { __typename?: 'ComponentQuoteQuoteResources'; block: Array; + hyperlink: Array; + inline: Array; }; /** Constrained-width component for displaying ad-hoc paragraphs of text (FAQs, intros, descriptions) [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/componentTextBlock) */ @@ -1848,6 +1696,8 @@ export type ComponentTextBlockBodyLinks = { export type ComponentTextBlockBodyResources = { __typename?: 'ComponentTextBlockBodyResources'; block: Array; + hyperlink: Array; + inline: Array; }; export type ComponentTextBlockCollection = { @@ -1981,6 +1831,105 @@ export type ContentfulTag = { name?: Maybe; }; +/** [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/editorTest) */ +export type EditorTest = Entry & { + __typename?: 'EditorTest'; + adminTitle?: Maybe; + body?: Maybe; + contentfulMetadata: ContentfulMetadata; + description?: Maybe; + linkedFrom?: Maybe; + sys: Sys; +}; + + +/** [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/editorTest) */ +export type EditorTestAdminTitleArgs = { + locale?: InputMaybe; +}; + + +/** [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/editorTest) */ +export type EditorTestBodyArgs = { + locale?: InputMaybe; +}; + + +/** [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/editorTest) */ +export type EditorTestDescriptionArgs = { + locale?: InputMaybe; +}; + + +/** [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/editorTest) */ +export type EditorTestLinkedFromArgs = { + allowedLocales?: InputMaybe>>; +}; + +export type EditorTestCollection = { + __typename?: 'EditorTestCollection'; + items: Array>; + limit: Scalars['Int']['output']; + skip: Scalars['Int']['output']; + total: Scalars['Int']['output']; +}; + +export type EditorTestFilter = { + AND?: InputMaybe>>; + OR?: InputMaybe>>; + adminTitle?: InputMaybe; + adminTitle_contains?: InputMaybe; + adminTitle_exists?: InputMaybe; + adminTitle_in?: InputMaybe>>; + adminTitle_not?: InputMaybe; + adminTitle_not_contains?: InputMaybe; + adminTitle_not_in?: InputMaybe>>; + body?: InputMaybe; + body_contains?: InputMaybe; + body_exists?: InputMaybe; + body_in?: InputMaybe>>; + body_not?: InputMaybe; + body_not_contains?: InputMaybe; + body_not_in?: InputMaybe>>; + contentfulMetadata?: InputMaybe; + description?: InputMaybe; + description_contains?: InputMaybe; + description_exists?: InputMaybe; + description_in?: InputMaybe>>; + description_not?: InputMaybe; + description_not_contains?: InputMaybe; + description_not_in?: InputMaybe>>; + sys?: InputMaybe; +}; + +export type EditorTestLinkingCollections = { + __typename?: 'EditorTestLinkingCollections'; + entryCollection?: Maybe; +}; + + +export type EditorTestLinkingCollectionsEntryCollectionArgs = { + limit?: InputMaybe; + locale?: InputMaybe; + preview?: InputMaybe; + skip?: InputMaybe; +}; + +export enum EditorTestOrder { + AdminTitleAsc = 'adminTitle_ASC', + AdminTitleDesc = 'adminTitle_DESC', + DescriptionAsc = 'description_ASC', + DescriptionDesc = 'description_DESC', + SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', + SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', + SysIdAsc = 'sys_id_ASC', + SysIdDesc = 'sys_id_DESC', + SysPublishedAtAsc = 'sys_publishedAt_ASC', + SysPublishedAtDesc = 'sys_publishedAt_DESC', + SysPublishedVersionAsc = 'sys_publishedVersion_ASC', + SysPublishedVersionDesc = 'sys_publishedVersion_DESC' +} + export type Entry = { contentfulMetadata: ContentfulMetadata; sys: Sys; @@ -2637,6 +2586,309 @@ export enum NavigationMenuOrder { SysPublishedVersionDesc = 'sys_publishedVersion_DESC' } +/** Ninetailed Audience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_audience) */ +export type NtAudience = Entry & { + __typename?: 'NtAudience'; + contentfulMetadata: ContentfulMetadata; + linkedFrom?: Maybe; + ntAudienceId?: Maybe; + ntDescription?: Maybe; + ntMetadata?: Maybe; + ntName?: Maybe; + ntRules?: Maybe; + sys: Sys; +}; + + +/** Ninetailed Audience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_audience) */ +export type NtAudienceLinkedFromArgs = { + allowedLocales?: InputMaybe>>; +}; + + +/** Ninetailed Audience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_audience) */ +export type NtAudienceNtAudienceIdArgs = { + locale?: InputMaybe; +}; + + +/** Ninetailed Audience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_audience) */ +export type NtAudienceNtDescriptionArgs = { + locale?: InputMaybe; +}; + + +/** Ninetailed Audience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_audience) */ +export type NtAudienceNtMetadataArgs = { + locale?: InputMaybe; +}; + + +/** Ninetailed Audience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_audience) */ +export type NtAudienceNtNameArgs = { + locale?: InputMaybe; +}; + + +/** Ninetailed Audience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_audience) */ +export type NtAudienceNtRulesArgs = { + locale?: InputMaybe; +}; + +export type NtAudienceCollection = { + __typename?: 'NtAudienceCollection'; + items: Array>; + limit: Scalars['Int']['output']; + skip: Scalars['Int']['output']; + total: Scalars['Int']['output']; +}; + +export type NtAudienceFilter = { + AND?: InputMaybe>>; + OR?: InputMaybe>>; + contentfulMetadata?: InputMaybe; + nt_audience_id?: InputMaybe; + nt_audience_id_contains?: InputMaybe; + nt_audience_id_exists?: InputMaybe; + nt_audience_id_in?: InputMaybe>>; + nt_audience_id_not?: InputMaybe; + nt_audience_id_not_contains?: InputMaybe; + nt_audience_id_not_in?: InputMaybe>>; + nt_description?: InputMaybe; + nt_description_contains?: InputMaybe; + nt_description_exists?: InputMaybe; + nt_description_in?: InputMaybe>>; + nt_description_not?: InputMaybe; + nt_description_not_contains?: InputMaybe; + nt_description_not_in?: InputMaybe>>; + nt_metadata_exists?: InputMaybe; + nt_name?: InputMaybe; + nt_name_contains?: InputMaybe; + nt_name_exists?: InputMaybe; + nt_name_in?: InputMaybe>>; + nt_name_not?: InputMaybe; + nt_name_not_contains?: InputMaybe; + nt_name_not_in?: InputMaybe>>; + nt_rules_exists?: InputMaybe; + sys?: InputMaybe; +}; + +export type NtAudienceLinkingCollections = { + __typename?: 'NtAudienceLinkingCollections'; + entryCollection?: Maybe; + ntExperienceCollection?: Maybe; +}; + + +export type NtAudienceLinkingCollectionsEntryCollectionArgs = { + limit?: InputMaybe; + locale?: InputMaybe; + preview?: InputMaybe; + skip?: InputMaybe; +}; + + +export type NtAudienceLinkingCollectionsNtExperienceCollectionArgs = { + limit?: InputMaybe; + locale?: InputMaybe; + order?: InputMaybe>>; + preview?: InputMaybe; + skip?: InputMaybe; +}; + +export enum NtAudienceLinkingCollectionsNtExperienceCollectionOrder { + NtExperienceIdAsc = 'nt_experience_id_ASC', + NtExperienceIdDesc = 'nt_experience_id_DESC', + NtNameAsc = 'nt_name_ASC', + NtNameDesc = 'nt_name_DESC', + NtTypeAsc = 'nt_type_ASC', + NtTypeDesc = 'nt_type_DESC', + SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', + SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', + SysIdAsc = 'sys_id_ASC', + SysIdDesc = 'sys_id_DESC', + SysPublishedAtAsc = 'sys_publishedAt_ASC', + SysPublishedAtDesc = 'sys_publishedAt_DESC', + SysPublishedVersionAsc = 'sys_publishedVersion_ASC', + SysPublishedVersionDesc = 'sys_publishedVersion_DESC' +} + +export enum NtAudienceOrder { + NtAudienceIdAsc = 'nt_audience_id_ASC', + NtAudienceIdDesc = 'nt_audience_id_DESC', + NtNameAsc = 'nt_name_ASC', + NtNameDesc = 'nt_name_DESC', + SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', + SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', + SysIdAsc = 'sys_id_ASC', + SysIdDesc = 'sys_id_DESC', + SysPublishedAtAsc = 'sys_publishedAt_ASC', + SysPublishedAtDesc = 'sys_publishedAt_DESC', + SysPublishedVersionAsc = 'sys_publishedVersion_ASC', + SysPublishedVersionDesc = 'sys_publishedVersion_DESC' +} + +/** Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) */ +export type NtExperience = Entry & { + __typename?: 'NtExperience'; + contentfulMetadata: ContentfulMetadata; + linkedFrom?: Maybe; + ntAudience?: Maybe; + ntConfig?: Maybe; + ntDescription?: Maybe; + ntExperienceId?: Maybe; + ntMetadata?: Maybe; + ntName?: Maybe; + ntType?: Maybe; + ntVariantsCollection?: Maybe; + sys: Sys; +}; + + +/** Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) */ +export type NtExperienceLinkedFromArgs = { + allowedLocales?: InputMaybe>>; +}; + + +/** Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) */ +export type NtExperienceNtAudienceArgs = { + locale?: InputMaybe; + preview?: InputMaybe; + where?: InputMaybe; +}; + + +/** Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) */ +export type NtExperienceNtConfigArgs = { + locale?: InputMaybe; +}; + + +/** Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) */ +export type NtExperienceNtDescriptionArgs = { + locale?: InputMaybe; +}; + + +/** Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) */ +export type NtExperienceNtExperienceIdArgs = { + locale?: InputMaybe; +}; + + +/** Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) */ +export type NtExperienceNtMetadataArgs = { + locale?: InputMaybe; +}; + + +/** Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) */ +export type NtExperienceNtNameArgs = { + locale?: InputMaybe; +}; + + +/** Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) */ +export type NtExperienceNtTypeArgs = { + locale?: InputMaybe; +}; + + +/** Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) */ +export type NtExperienceNtVariantsCollectionArgs = { + limit?: InputMaybe; + locale?: InputMaybe; + preview?: InputMaybe; + skip?: InputMaybe; +}; + +export type NtExperienceCollection = { + __typename?: 'NtExperienceCollection'; + items: Array>; + limit: Scalars['Int']['output']; + skip: Scalars['Int']['output']; + total: Scalars['Int']['output']; +}; + +export type NtExperienceFilter = { + AND?: InputMaybe>>; + OR?: InputMaybe>>; + contentfulMetadata?: InputMaybe; + nt_audience?: InputMaybe; + nt_audience_exists?: InputMaybe; + nt_config_exists?: InputMaybe; + nt_description?: InputMaybe; + nt_description_contains?: InputMaybe; + nt_description_exists?: InputMaybe; + nt_description_in?: InputMaybe>>; + nt_description_not?: InputMaybe; + nt_description_not_contains?: InputMaybe; + nt_description_not_in?: InputMaybe>>; + nt_experience_id?: InputMaybe; + nt_experience_id_contains?: InputMaybe; + nt_experience_id_exists?: InputMaybe; + nt_experience_id_in?: InputMaybe>>; + nt_experience_id_not?: InputMaybe; + nt_experience_id_not_contains?: InputMaybe; + nt_experience_id_not_in?: InputMaybe>>; + nt_metadata_exists?: InputMaybe; + nt_name?: InputMaybe; + nt_name_contains?: InputMaybe; + nt_name_exists?: InputMaybe; + nt_name_in?: InputMaybe>>; + nt_name_not?: InputMaybe; + nt_name_not_contains?: InputMaybe; + nt_name_not_in?: InputMaybe>>; + nt_type?: InputMaybe; + nt_type_contains?: InputMaybe; + nt_type_exists?: InputMaybe; + nt_type_in?: InputMaybe>>; + nt_type_not?: InputMaybe; + nt_type_not_contains?: InputMaybe; + nt_type_not_in?: InputMaybe>>; + nt_variantsCollection_exists?: InputMaybe; + sys?: InputMaybe; +}; + +export type NtExperienceLinkingCollections = { + __typename?: 'NtExperienceLinkingCollections'; + entryCollection?: Maybe; +}; + + +export type NtExperienceLinkingCollectionsEntryCollectionArgs = { + limit?: InputMaybe; + locale?: InputMaybe; + preview?: InputMaybe; + skip?: InputMaybe; +}; + +export type NtExperienceNt_VariantsCollection = { + __typename?: 'NtExperienceNt_variantsCollection'; + items: Array>; + limit: Scalars['Int']['output']; + skip: Scalars['Int']['output']; + total: Scalars['Int']['output']; +}; + +export enum NtExperienceOrder { + NtExperienceIdAsc = 'nt_experience_id_ASC', + NtExperienceIdDesc = 'nt_experience_id_DESC', + NtNameAsc = 'nt_name_ASC', + NtNameDesc = 'nt_name_DESC', + NtTypeAsc = 'nt_type_ASC', + NtTypeDesc = 'nt_type_DESC', + SysFirstPublishedAtAsc = 'sys_firstPublishedAt_ASC', + SysFirstPublishedAtDesc = 'sys_firstPublishedAt_DESC', + SysIdAsc = 'sys_id_ASC', + SysIdDesc = 'sys_id_DESC', + SysPublishedAtAsc = 'sys_publishedAt_ASC', + SysPublishedAtDesc = 'sys_publishedAt_DESC', + SysPublishedVersionAsc = 'sys_publishedVersion_ASC', + SysPublishedVersionDesc = 'sys_publishedVersion_DESC' +} + /** Container that enables editors to publish a page, define its slug, select & arrange its content [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/page) */ export type Page = Entry & { __typename?: 'Page'; @@ -2972,6 +3224,7 @@ export type PageTopSectionItem = ComponentCta | ComponentDuplex | ComponentHeroB export type Query = { __typename?: 'Query'; + _node?: Maybe<_Node>; asset?: Maybe; assetCollection?: Maybe; componentCta?: Maybe; @@ -2988,6 +3241,8 @@ export type Query = { componentQuoteCollection?: Maybe; componentTextBlock?: Maybe; componentTextBlockCollection?: Maybe; + editorTest?: Maybe; + editorTestCollection?: Maybe; entryCollection?: Maybe; footerMenu?: Maybe; footerMenuCollection?: Maybe; @@ -2995,6 +3250,10 @@ export type Query = { menuGroupCollection?: Maybe; navigationMenu?: Maybe; navigationMenuCollection?: Maybe; + ntAudience?: Maybe; + ntAudienceCollection?: Maybe; + ntExperience?: Maybe; + ntExperienceCollection?: Maybe; page?: Maybe; pageCollection?: Maybe; seo?: Maybe; @@ -3010,6 +3269,13 @@ export type Query = { }; +export type Query_NodeArgs = { + id: Scalars['ID']['input']; + locale?: InputMaybe; + preview?: InputMaybe; +}; + + export type QueryAssetArgs = { id: Scalars['String']['input']; locale?: InputMaybe; @@ -3146,6 +3412,23 @@ export type QueryComponentTextBlockCollectionArgs = { }; +export type QueryEditorTestArgs = { + id: Scalars['String']['input']; + locale?: InputMaybe; + preview?: InputMaybe; +}; + + +export type QueryEditorTestCollectionArgs = { + limit?: InputMaybe; + locale?: InputMaybe; + order?: InputMaybe>>; + preview?: InputMaybe; + skip?: InputMaybe; + where?: InputMaybe; +}; + + export type QueryEntryCollectionArgs = { limit?: InputMaybe; locale?: InputMaybe; @@ -3207,6 +3490,40 @@ export type QueryNavigationMenuCollectionArgs = { }; +export type QueryNtAudienceArgs = { + id: Scalars['String']['input']; + locale?: InputMaybe; + preview?: InputMaybe; +}; + + +export type QueryNtAudienceCollectionArgs = { + limit?: InputMaybe; + locale?: InputMaybe; + order?: InputMaybe>>; + preview?: InputMaybe; + skip?: InputMaybe; + where?: InputMaybe; +}; + + +export type QueryNtExperienceArgs = { + id: Scalars['String']['input']; + locale?: InputMaybe; + preview?: InputMaybe; +}; + + +export type QueryNtExperienceCollectionArgs = { + limit?: InputMaybe; + locale?: InputMaybe; + order?: InputMaybe>>; + preview?: InputMaybe; + skip?: InputMaybe; + where?: InputMaybe; +}; + + export type QueryPageArgs = { id: Scalars['String']['input']; locale?: InputMaybe; @@ -3607,6 +3924,8 @@ export type TopicBusinessInfoBodyLinks = { export type TopicBusinessInfoBodyResources = { __typename?: 'TopicBusinessInfoBodyResources'; block: Array; + hyperlink: Array; + inline: Array; }; export type TopicBusinessInfoCollection = { @@ -3797,6 +4116,8 @@ export type TopicPersonBioLinks = { export type TopicPersonBioResources = { __typename?: 'TopicPersonBioResources'; block: Array; + hyperlink: Array; + inline: Array; }; export type TopicPersonCollection = { @@ -3982,6 +4303,8 @@ export type TopicProductDescriptionLinks = { export type TopicProductDescriptionResources = { __typename?: 'TopicProductDescriptionResources'; block: Array; + hyperlink: Array; + inline: Array; }; /** Sub-container for product features enabling re-use of generic features across different products [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/topicProductFeature) */ @@ -4130,6 +4453,8 @@ export type TopicProductFeatureLongDescriptionLinks = { export type TopicProductFeatureLongDescriptionResources = { __typename?: 'TopicProductFeatureLongDescriptionResources'; block: Array; + hyperlink: Array; + inline: Array; }; export enum TopicProductFeatureOrder { @@ -4176,6 +4501,8 @@ export type TopicProductFeatureShortDescriptionLinks = { export type TopicProductFeatureShortDescriptionResources = { __typename?: 'TopicProductFeatureShortDescriptionResources'; block: Array; + hyperlink: Array; + inline: Array; }; export type TopicProductFeaturesCollection = { @@ -4321,6 +4648,10 @@ export enum TopicProductOrder { SysPublishedVersionDesc = 'sys_publishedVersion_DESC' } +export type _Node = { + _id: Scalars['ID']['output']; +}; + export type CfMenuGroupNestedFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; @@ -4344,6 +4675,36 @@ export type CfMenuGroupNestedFilter = { sys?: InputMaybe; }; +export type CfNtAudienceNestedFilter = { + AND?: InputMaybe>>; + OR?: InputMaybe>>; + contentfulMetadata?: InputMaybe; + nt_audience_id?: InputMaybe; + nt_audience_id_contains?: InputMaybe; + nt_audience_id_exists?: InputMaybe; + nt_audience_id_in?: InputMaybe>>; + nt_audience_id_not?: InputMaybe; + nt_audience_id_not_contains?: InputMaybe; + nt_audience_id_not_in?: InputMaybe>>; + nt_description?: InputMaybe; + nt_description_contains?: InputMaybe; + nt_description_exists?: InputMaybe; + nt_description_in?: InputMaybe>>; + nt_description_not?: InputMaybe; + nt_description_not_contains?: InputMaybe; + nt_description_not_in?: InputMaybe>>; + nt_metadata_exists?: InputMaybe; + nt_name?: InputMaybe; + nt_name_contains?: InputMaybe; + nt_name_exists?: InputMaybe; + nt_name_in?: InputMaybe>>; + nt_name_not?: InputMaybe; + nt_name_not_contains?: InputMaybe; + nt_name_not_in?: InputMaybe>>; + nt_rules_exists?: InputMaybe; + sys?: InputMaybe; +}; + export type CfSeoNestedFilter = { AND?: InputMaybe>>; OR?: InputMaybe>>; @@ -4575,10 +4936,13 @@ export type LayoutQuery = { __typename?: 'Query', navigationMenuCollection?: ( export type AssetFieldsFragment = { __typename: 'Asset', contentType?: string | null, title?: string | null, url?: string | null, width?: number | null, height?: number | null, description?: string | null, sys: { __typename?: 'Sys', id: string } } & { ' $fragmentName'?: 'AssetFieldsFragment' }; -export type ComponentDuplexFieldsFragment = { __typename: 'ComponentDuplex', headline?: string | null, ctaText?: string | null, imageStyle?: boolean | null, colorPalette?: string | null, sys: { __typename?: 'Sys', id: string }, bodyText?: { __typename?: 'ComponentDuplexBodyText', json: any } | null, targetPage?: ( +export type ComponentDuplexFieldsFragment = { __typename: 'ComponentDuplex', headline?: string | null, ctaText?: string | null, imageStyle?: boolean | null, colorPalette?: string | null, containerLayout?: boolean | null, sys: { __typename?: 'Sys', id: string }, bodyText?: { __typename?: 'ComponentDuplexBodyText', json: any } | null, targetPage?: ( { __typename?: 'Page' } & { ' $fragmentRefs'?: { 'PageLinkFieldsFragment': PageLinkFieldsFragment } } - ) | null, image?: { __typename?: 'Asset', url?: string | null } | null } & { ' $fragmentName'?: 'ComponentDuplexFieldsFragment' }; + ) | null, image?: ( + { __typename?: 'Asset' } + & { ' $fragmentRefs'?: { 'AssetFieldsFragment': AssetFieldsFragment } } + ) | null } & { ' $fragmentName'?: 'ComponentDuplexFieldsFragment' }; export type ComponentHeroBannerFieldsFragment = { __typename: 'ComponentHeroBanner', headline?: string | null, ctaText?: string | null, imageStyle?: boolean | null, heroSize?: boolean | null, colorPalette?: string | null, sys: { __typename?: 'Sys', id: string }, bodyText?: { __typename?: 'ComponentHeroBannerBodyText', json: any, links: { __typename?: 'ComponentHeroBannerBodyTextLinks', assets: { __typename?: 'ComponentHeroBannerBodyTextAssets', block: Array<( { __typename?: 'Asset' } @@ -4616,11 +4980,11 @@ export type PageSlugQueryQueryVariables = Exact<{ export type PageSlugQueryQuery = { __typename?: 'Query', pageCollection?: { __typename?: 'PageCollection', items: Array<{ __typename?: 'Page', slug?: string | null } | null> } | null }; export const PageLinkFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageLinkFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageName"}},{"kind":"Field","name":{"kind":"Name","value":"pageContent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const ComponentDuplexFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ComponentDuplexFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ComponentDuplex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"headline"}},{"kind":"Field","name":{"kind":"Name","value":"bodyText"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"json"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ctaText"}},{"kind":"Field","name":{"kind":"Name","value":"targetPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageStyle"}},{"kind":"Field","name":{"kind":"Name","value":"colorPalette"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageLinkFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageName"}},{"kind":"Field","name":{"kind":"Name","value":"pageContent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const AssetFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AssetFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}}]} as unknown as DocumentNode; +export const ComponentDuplexFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ComponentDuplexFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ComponentDuplex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"headline"}},{"kind":"Field","name":{"kind":"Name","value":"bodyText"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"json"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ctaText"}},{"kind":"Field","name":{"kind":"Name","value":"targetPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AssetFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageStyle"}},{"kind":"Field","name":{"kind":"Name","value":"colorPalette"}},{"kind":"Field","name":{"kind":"Name","value":"containerLayout"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageLinkFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageName"}},{"kind":"Field","name":{"kind":"Name","value":"pageContent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AssetFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}}]} as unknown as DocumentNode; export const ComponentHeroBannerFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ComponentHeroBannerFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ComponentHeroBanner"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"headline"}},{"kind":"Field","name":{"kind":"Name","value":"bodyText"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"json"}},{"kind":"Field","name":{"kind":"Name","value":"links"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"block"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AssetFields"}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"ctaText"}},{"kind":"Field","name":{"kind":"Name","value":"targetPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AssetFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageStyle"}},{"kind":"Field","name":{"kind":"Name","value":"heroSize"}},{"kind":"Field","name":{"kind":"Name","value":"colorPalette"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AssetFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageLinkFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageName"}},{"kind":"Field","name":{"kind":"Name","value":"pageContent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const MenuGroupFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"MenuGroupFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MenuGroupFeaturedPagesCollection"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageLinkFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageName"}},{"kind":"Field","name":{"kind":"Name","value":"pageContent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const NavigationFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NavigationFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationMenuCollection"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"menuItemsCollection"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"link"},"name":{"kind":"Name","value":"groupLink"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"children"},"name":{"kind":"Name","value":"featuredPagesCollection"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"MenuGroupFields"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageLinkFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageName"}},{"kind":"Field","name":{"kind":"Name","value":"pageContent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"MenuGroupFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MenuGroupFeaturedPagesCollection"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}}]}}]} as unknown as DocumentNode; -export const PageQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PageQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"locale"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"preview"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pageCollection"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}},{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"topSectionCollection"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"10"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ComponentHeroBannerFields"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ComponentDuplexFields"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AssetFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageLinkFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageName"}},{"kind":"Field","name":{"kind":"Name","value":"pageContent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ComponentHeroBannerFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ComponentHeroBanner"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"headline"}},{"kind":"Field","name":{"kind":"Name","value":"bodyText"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"json"}},{"kind":"Field","name":{"kind":"Name","value":"links"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"block"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AssetFields"}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"ctaText"}},{"kind":"Field","name":{"kind":"Name","value":"targetPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AssetFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageStyle"}},{"kind":"Field","name":{"kind":"Name","value":"heroSize"}},{"kind":"Field","name":{"kind":"Name","value":"colorPalette"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ComponentDuplexFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ComponentDuplex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"headline"}},{"kind":"Field","name":{"kind":"Name","value":"bodyText"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"json"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ctaText"}},{"kind":"Field","name":{"kind":"Name","value":"targetPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageStyle"}},{"kind":"Field","name":{"kind":"Name","value":"colorPalette"}}]}}]} as unknown as DocumentNode; +export const PageQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PageQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"locale"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"preview"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pageCollection"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}},{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"topSectionCollection"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"10"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ComponentHeroBannerFields"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ComponentDuplexFields"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AssetFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageLinkFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageName"}},{"kind":"Field","name":{"kind":"Name","value":"pageContent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ComponentHeroBannerFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ComponentHeroBanner"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"headline"}},{"kind":"Field","name":{"kind":"Name","value":"bodyText"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"json"}},{"kind":"Field","name":{"kind":"Name","value":"links"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"block"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AssetFields"}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"ctaText"}},{"kind":"Field","name":{"kind":"Name","value":"targetPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AssetFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageStyle"}},{"kind":"Field","name":{"kind":"Name","value":"heroSize"}},{"kind":"Field","name":{"kind":"Name","value":"colorPalette"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ComponentDuplexFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ComponentDuplex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"headline"}},{"kind":"Field","name":{"kind":"Name","value":"bodyText"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"json"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ctaText"}},{"kind":"Field","name":{"kind":"Name","value":"targetPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AssetFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageStyle"}},{"kind":"Field","name":{"kind":"Name","value":"colorPalette"}},{"kind":"Field","name":{"kind":"Name","value":"containerLayout"}}]}}]} as unknown as DocumentNode; export const LayoutDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Layout"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"locale"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"preview"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"navigationMenuCollection"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"NavigationFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageLinkFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageName"}},{"kind":"Field","name":{"kind":"Name","value":"pageContent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"MenuGroupFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MenuGroupFeaturedPagesCollection"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NavigationFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationMenuCollection"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"menuItemsCollection"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"link"},"name":{"kind":"Name","value":"groupLink"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageLinkFields"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"children"},"name":{"kind":"Name","value":"featuredPagesCollection"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"MenuGroupFields"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const PageSlugQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PageSlugQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"locale"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"preview"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pageCollection"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"locale"},"value":{"kind":"Variable","name":{"kind":"Name","value":"locale"}}},{"kind":"Argument","name":{"kind":"Name","value":"preview"},"value":{"kind":"Variable","name":{"kind":"Name","value":"preview"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}},{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; \ No newline at end of file diff --git a/gql/schema.graphql b/gql/schema.graphql index 03ad648..482a449 100644 --- a/gql/schema.graphql +++ b/gql/schema.graphql @@ -90,173 +90,15 @@ input AssetFilter { } type AssetLinkingCollections { - componentDuplexCollection(limit: Int = 100, locale: String, order: [AssetLinkingCollectionsComponentDuplexCollectionOrder], preview: Boolean, skip: Int = 0): ComponentDuplexCollection - componentHeroBannerCollection(limit: Int = 100, locale: String, order: [AssetLinkingCollectionsComponentHeroBannerCollectionOrder], preview: Boolean, skip: Int = 0): ComponentHeroBannerCollection - componentInfoBlockCollection(limit: Int = 100, locale: String, order: [AssetLinkingCollectionsComponentInfoBlockCollectionOrder], preview: Boolean, skip: Int = 0): ComponentInfoBlockCollection - componentQuoteCollection(limit: Int = 100, locale: String, order: [AssetLinkingCollectionsComponentQuoteCollectionOrder], preview: Boolean, skip: Int = 0): ComponentQuoteCollection + componentDuplexCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): ComponentDuplexCollection + componentHeroBannerCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): ComponentHeroBannerCollection + componentInfoBlockCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): ComponentInfoBlockCollection + componentQuoteCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): ComponentQuoteCollection entryCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): EntryCollection - seoCollection(limit: Int = 100, locale: String, order: [AssetLinkingCollectionsSeoCollectionOrder], preview: Boolean, skip: Int = 0): SeoCollection - topicBusinessInfoCollection(limit: Int = 100, locale: String, order: [AssetLinkingCollectionsTopicBusinessInfoCollectionOrder], preview: Boolean, skip: Int = 0): TopicBusinessInfoCollection - topicPersonCollection(limit: Int = 100, locale: String, order: [AssetLinkingCollectionsTopicPersonCollectionOrder], preview: Boolean, skip: Int = 0): TopicPersonCollection - topicProductCollection(limit: Int = 100, locale: String, order: [AssetLinkingCollectionsTopicProductCollectionOrder], preview: Boolean, skip: Int = 0): TopicProductCollection -} - -enum AssetLinkingCollectionsComponentDuplexCollectionOrder { - colorPalette_ASC - colorPalette_DESC - containerLayout_ASC - containerLayout_DESC - ctaText_ASC - ctaText_DESC - headline_ASC - headline_DESC - imageStyle_ASC - imageStyle_DESC - internalName_ASC - internalName_DESC - sys_firstPublishedAt_ASC - sys_firstPublishedAt_DESC - sys_id_ASC - sys_id_DESC - sys_publishedAt_ASC - sys_publishedAt_DESC - sys_publishedVersion_ASC - sys_publishedVersion_DESC -} - -enum AssetLinkingCollectionsComponentHeroBannerCollectionOrder { - colorPalette_ASC - colorPalette_DESC - ctaText_ASC - ctaText_DESC - headline_ASC - headline_DESC - heroSize_ASC - heroSize_DESC - imageStyle_ASC - imageStyle_DESC - internalName_ASC - internalName_DESC - sys_firstPublishedAt_ASC - sys_firstPublishedAt_DESC - sys_id_ASC - sys_id_DESC - sys_publishedAt_ASC - sys_publishedAt_DESC - sys_publishedVersion_ASC - sys_publishedVersion_DESC -} - -enum AssetLinkingCollectionsComponentInfoBlockCollectionOrder { - colorPalette_ASC - colorPalette_DESC - headline_ASC - headline_DESC - internalName_ASC - internalName_DESC - subline_ASC - subline_DESC - sys_firstPublishedAt_ASC - sys_firstPublishedAt_DESC - sys_id_ASC - sys_id_DESC - sys_publishedAt_ASC - sys_publishedAt_DESC - sys_publishedVersion_ASC - sys_publishedVersion_DESC -} - -enum AssetLinkingCollectionsComponentQuoteCollectionOrder { - colorPalette_ASC - colorPalette_DESC - imagePosition_ASC - imagePosition_DESC - internalName_ASC - internalName_DESC - quoteAlignment_ASC - quoteAlignment_DESC - sys_firstPublishedAt_ASC - sys_firstPublishedAt_DESC - sys_id_ASC - sys_id_DESC - sys_publishedAt_ASC - sys_publishedAt_DESC - sys_publishedVersion_ASC - sys_publishedVersion_DESC -} - -enum AssetLinkingCollectionsSeoCollectionOrder { - description_ASC - description_DESC - name_ASC - name_DESC - noFollow_ASC - noFollow_DESC - noIndex_ASC - noIndex_DESC - sys_firstPublishedAt_ASC - sys_firstPublishedAt_DESC - sys_id_ASC - sys_id_DESC - sys_publishedAt_ASC - sys_publishedAt_DESC - sys_publishedVersion_ASC - sys_publishedVersion_DESC - title_ASC - title_DESC -} - -enum AssetLinkingCollectionsTopicBusinessInfoCollectionOrder { - internalName_ASC - internalName_DESC - name_ASC - name_DESC - sys_firstPublishedAt_ASC - sys_firstPublishedAt_DESC - sys_id_ASC - sys_id_DESC - sys_publishedAt_ASC - sys_publishedAt_DESC - sys_publishedVersion_ASC - sys_publishedVersion_DESC -} - -enum AssetLinkingCollectionsTopicPersonCollectionOrder { - cardStyle_ASC - cardStyle_DESC - internalName_ASC - internalName_DESC - location_ASC - location_DESC - name_ASC - name_DESC - sys_firstPublishedAt_ASC - sys_firstPublishedAt_DESC - sys_id_ASC - sys_id_DESC - sys_publishedAt_ASC - sys_publishedAt_DESC - sys_publishedVersion_ASC - sys_publishedVersion_DESC - website_ASC - website_DESC -} - -enum AssetLinkingCollectionsTopicProductCollectionOrder { - internalName_ASC - internalName_DESC - name_ASC - name_DESC - price_ASC - price_DESC - sys_firstPublishedAt_ASC - sys_firstPublishedAt_DESC - sys_id_ASC - sys_id_DESC - sys_publishedAt_ASC - sys_publishedAt_DESC - sys_publishedVersion_ASC - sys_publishedVersion_DESC + seoCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): SeoCollection + topicBusinessInfoCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): TopicBusinessInfoCollection + topicPersonCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): TopicPersonCollection + topicProductCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): TopicProductCollection } enum AssetOrder { @@ -418,6 +260,8 @@ type ComponentCtaSublineLinks { type ComponentCtaSublineResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } union ComponentCtaTargetPage = Page @@ -464,6 +308,8 @@ type ComponentDuplexBodyTextLinks { type ComponentDuplexBodyTextResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } type ComponentDuplexCollection { @@ -608,6 +454,8 @@ type ComponentHeroBannerBodyTextLinks { type ComponentHeroBannerBodyTextResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } type ComponentHeroBannerCollection { @@ -753,6 +601,8 @@ type ComponentInfoBlockBlock1BodyLinks { type ComponentInfoBlockBlock1BodyResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } type ComponentInfoBlockBlock2Body { @@ -779,6 +629,8 @@ type ComponentInfoBlockBlock2BodyLinks { type ComponentInfoBlockBlock2BodyResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } type ComponentInfoBlockBlock3Body { @@ -805,6 +657,8 @@ type ComponentInfoBlockBlock3BodyLinks { type ComponentInfoBlockBlock3BodyResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } type ComponentInfoBlockCollection { @@ -1133,6 +987,8 @@ type ComponentQuoteQuoteLinks { type ComponentQuoteQuoteResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } """ @@ -1173,6 +1029,8 @@ type ComponentTextBlockBodyLinks { type ComponentTextBlockBodyResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } type ComponentTextBlockCollection { @@ -1298,6 +1156,72 @@ The 'Dimension' type represents dimensions as whole numeric values between `1` a """ scalar Dimension +""" +[See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/editorTest) +""" +type EditorTest implements Entry { + adminTitle(locale: String): String + body(locale: String): String + contentfulMetadata: ContentfulMetadata! + description(locale: String): String + linkedFrom(allowedLocales: [String]): EditorTestLinkingCollections + sys: Sys! +} + +type EditorTestCollection { + items: [EditorTest]! + limit: Int! + skip: Int! + total: Int! +} + +input EditorTestFilter { + AND: [EditorTestFilter] + OR: [EditorTestFilter] + adminTitle: String + adminTitle_contains: String + adminTitle_exists: Boolean + adminTitle_in: [String] + adminTitle_not: String + adminTitle_not_contains: String + adminTitle_not_in: [String] + body: String + body_contains: String + body_exists: Boolean + body_in: [String] + body_not: String + body_not_contains: String + body_not_in: [String] + contentfulMetadata: ContentfulMetadataFilter + description: String + description_contains: String + description_exists: Boolean + description_in: [String] + description_not: String + description_not_contains: String + description_not_in: [String] + sys: SysFilter +} + +type EditorTestLinkingCollections { + entryCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): EntryCollection +} + +enum EditorTestOrder { + adminTitle_ASC + adminTitle_DESC + description_ASC + description_DESC + sys_firstPublishedAt_ASC + sys_firstPublishedAt_DESC + sys_id_ASC + sys_id_DESC + sys_publishedAt_ASC + sys_publishedAt_DESC + sys_publishedVersion_ASC + sys_publishedVersion_DESC +} + interface Entry { contentfulMetadata: ContentfulMetadata! sys: Sys! @@ -1832,6 +1756,186 @@ enum NavigationMenuOrder { sys_publishedVersion_DESC } +""" +Ninetailed Audience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_audience) +""" +type NtAudience implements Entry { + contentfulMetadata: ContentfulMetadata! + linkedFrom(allowedLocales: [String]): NtAudienceLinkingCollections + ntAudienceId(locale: String): String + ntDescription(locale: String): String + ntMetadata(locale: String): JSON + ntName(locale: String): String + ntRules(locale: String): JSON + sys: Sys! +} + +type NtAudienceCollection { + items: [NtAudience]! + limit: Int! + skip: Int! + total: Int! +} + +input NtAudienceFilter { + AND: [NtAudienceFilter] + OR: [NtAudienceFilter] + contentfulMetadata: ContentfulMetadataFilter + nt_audience_id: String + nt_audience_id_contains: String + nt_audience_id_exists: Boolean + nt_audience_id_in: [String] + nt_audience_id_not: String + nt_audience_id_not_contains: String + nt_audience_id_not_in: [String] + nt_description: String + nt_description_contains: String + nt_description_exists: Boolean + nt_description_in: [String] + nt_description_not: String + nt_description_not_contains: String + nt_description_not_in: [String] + nt_metadata_exists: Boolean + nt_name: String + nt_name_contains: String + nt_name_exists: Boolean + nt_name_in: [String] + nt_name_not: String + nt_name_not_contains: String + nt_name_not_in: [String] + nt_rules_exists: Boolean + sys: SysFilter +} + +type NtAudienceLinkingCollections { + entryCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): EntryCollection + ntExperienceCollection(limit: Int = 100, locale: String, order: [NtAudienceLinkingCollectionsNtExperienceCollectionOrder], preview: Boolean, skip: Int = 0): NtExperienceCollection +} + +enum NtAudienceLinkingCollectionsNtExperienceCollectionOrder { + nt_experience_id_ASC + nt_experience_id_DESC + nt_name_ASC + nt_name_DESC + nt_type_ASC + nt_type_DESC + sys_firstPublishedAt_ASC + sys_firstPublishedAt_DESC + sys_id_ASC + sys_id_DESC + sys_publishedAt_ASC + sys_publishedAt_DESC + sys_publishedVersion_ASC + sys_publishedVersion_DESC +} + +enum NtAudienceOrder { + nt_audience_id_ASC + nt_audience_id_DESC + nt_name_ASC + nt_name_DESC + sys_firstPublishedAt_ASC + sys_firstPublishedAt_DESC + sys_id_ASC + sys_id_DESC + sys_publishedAt_ASC + sys_publishedAt_DESC + sys_publishedVersion_ASC + sys_publishedVersion_DESC +} + +""" +Ninetailed Experience [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/nt_experience) +""" +type NtExperience implements Entry { + contentfulMetadata: ContentfulMetadata! + linkedFrom(allowedLocales: [String]): NtExperienceLinkingCollections + ntAudience(locale: String, preview: Boolean, where: NtAudienceFilter): NtAudience + ntConfig(locale: String): JSON + ntDescription(locale: String): String + ntExperienceId(locale: String): String + ntMetadata(locale: String): JSON + ntName(locale: String): String + ntType(locale: String): String + ntVariantsCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): NtExperienceNt_variantsCollection + sys: Sys! +} + +type NtExperienceCollection { + items: [NtExperience]! + limit: Int! + skip: Int! + total: Int! +} + +input NtExperienceFilter { + AND: [NtExperienceFilter] + OR: [NtExperienceFilter] + contentfulMetadata: ContentfulMetadataFilter + nt_audience: cfNtAudienceNestedFilter + nt_audience_exists: Boolean + nt_config_exists: Boolean + nt_description: String + nt_description_contains: String + nt_description_exists: Boolean + nt_description_in: [String] + nt_description_not: String + nt_description_not_contains: String + nt_description_not_in: [String] + nt_experience_id: String + nt_experience_id_contains: String + nt_experience_id_exists: Boolean + nt_experience_id_in: [String] + nt_experience_id_not: String + nt_experience_id_not_contains: String + nt_experience_id_not_in: [String] + nt_metadata_exists: Boolean + nt_name: String + nt_name_contains: String + nt_name_exists: Boolean + nt_name_in: [String] + nt_name_not: String + nt_name_not_contains: String + nt_name_not_in: [String] + nt_type: String + nt_type_contains: String + nt_type_exists: Boolean + nt_type_in: [String] + nt_type_not: String + nt_type_not_contains: String + nt_type_not_in: [String] + nt_variantsCollection_exists: Boolean + sys: SysFilter +} + +type NtExperienceLinkingCollections { + entryCollection(limit: Int = 100, locale: String, preview: Boolean, skip: Int = 0): EntryCollection +} + +type NtExperienceNt_variantsCollection { + items: [Entry]! + limit: Int! + skip: Int! + total: Int! +} + +enum NtExperienceOrder { + nt_experience_id_ASC + nt_experience_id_DESC + nt_name_ASC + nt_name_DESC + nt_type_ASC + nt_type_DESC + sys_firstPublishedAt_ASC + sys_firstPublishedAt_DESC + sys_id_ASC + sys_id_DESC + sys_publishedAt_ASC + sys_publishedAt_DESC + sys_publishedVersion_ASC + sys_publishedVersion_DESC +} + """ Container that enables editors to publish a page, define its slug, select & arrange its content [See type definition](https://app.contentful.com/spaces/44pcbcmur9gk/content_types/page) """ @@ -2065,6 +2169,7 @@ The 'Quality' type represents quality as whole numeric values between `1` and `1 scalar Quality type Query { + _node(id: ID!, locale: String, preview: Boolean): _Node asset(id: String!, locale: String, preview: Boolean): Asset assetCollection(limit: Int = 100, locale: String, order: [AssetOrder], preview: Boolean, skip: Int = 0, where: AssetFilter): AssetCollection componentCta(id: String!, locale: String, preview: Boolean): ComponentCta @@ -2081,6 +2186,8 @@ type Query { componentQuoteCollection(limit: Int = 100, locale: String, order: [ComponentQuoteOrder], preview: Boolean, skip: Int = 0, where: ComponentQuoteFilter): ComponentQuoteCollection componentTextBlock(id: String!, locale: String, preview: Boolean): ComponentTextBlock componentTextBlockCollection(limit: Int = 100, locale: String, order: [ComponentTextBlockOrder], preview: Boolean, skip: Int = 0, where: ComponentTextBlockFilter): ComponentTextBlockCollection + editorTest(id: String!, locale: String, preview: Boolean): EditorTest + editorTestCollection(limit: Int = 100, locale: String, order: [EditorTestOrder], preview: Boolean, skip: Int = 0, where: EditorTestFilter): EditorTestCollection entryCollection(limit: Int = 100, locale: String, order: [EntryOrder], preview: Boolean, skip: Int = 0, where: EntryFilter): EntryCollection footerMenu(id: String!, locale: String, preview: Boolean): FooterMenu footerMenuCollection(limit: Int = 100, locale: String, order: [FooterMenuOrder], preview: Boolean, skip: Int = 0, where: FooterMenuFilter): FooterMenuCollection @@ -2088,6 +2195,10 @@ type Query { menuGroupCollection(limit: Int = 100, locale: String, order: [MenuGroupOrder], preview: Boolean, skip: Int = 0, where: MenuGroupFilter): MenuGroupCollection navigationMenu(id: String!, locale: String, preview: Boolean): NavigationMenu navigationMenuCollection(limit: Int = 100, locale: String, order: [NavigationMenuOrder], preview: Boolean, skip: Int = 0, where: NavigationMenuFilter): NavigationMenuCollection + ntAudience(id: String!, locale: String, preview: Boolean): NtAudience + ntAudienceCollection(limit: Int = 100, locale: String, order: [NtAudienceOrder], preview: Boolean, skip: Int = 0, where: NtAudienceFilter): NtAudienceCollection + ntExperience(id: String!, locale: String, preview: Boolean): NtExperience + ntExperienceCollection(limit: Int = 100, locale: String, order: [NtExperienceOrder], preview: Boolean, skip: Int = 0, where: NtExperienceFilter): NtExperienceCollection page(id: String!, locale: String, preview: Boolean): Page pageCollection(limit: Int = 100, locale: String, order: [PageOrder], preview: Boolean, skip: Int = 0, where: PageFilter): PageCollection seo(id: String!, locale: String, preview: Boolean): Seo @@ -2296,6 +2407,8 @@ type TopicBusinessInfoBodyLinks { type TopicBusinessInfoBodyResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } type TopicBusinessInfoCollection { @@ -2414,6 +2527,8 @@ type TopicPersonBioLinks { type TopicPersonBioResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } type TopicPersonCollection { @@ -2536,6 +2651,8 @@ type TopicProductDescriptionLinks { type TopicProductDescriptionResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } """ @@ -2631,6 +2748,8 @@ type TopicProductFeatureLongDescriptionLinks { type TopicProductFeatureLongDescriptionResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } enum TopicProductFeatureOrder { @@ -2672,6 +2791,8 @@ type TopicProductFeatureShortDescriptionLinks { type TopicProductFeatureShortDescriptionResources { block: [ResourceLink!]! + hyperlink: [ResourceLink!]! + inline: [ResourceLink!]! } type TopicProductFeaturesCollection { @@ -2789,6 +2910,10 @@ enum TopicProductOrder { sys_publishedVersion_DESC } +interface _Node { + _id: ID! +} + input cfMenuGroupNestedFilter { AND: [cfMenuGroupNestedFilter] OR: [cfMenuGroupNestedFilter] @@ -2812,6 +2937,36 @@ input cfMenuGroupNestedFilter { sys: SysFilter } +input cfNtAudienceNestedFilter { + AND: [cfNtAudienceNestedFilter] + OR: [cfNtAudienceNestedFilter] + contentfulMetadata: ContentfulMetadataFilter + nt_audience_id: String + nt_audience_id_contains: String + nt_audience_id_exists: Boolean + nt_audience_id_in: [String] + nt_audience_id_not: String + nt_audience_id_not_contains: String + nt_audience_id_not_in: [String] + nt_description: String + nt_description_contains: String + nt_description_exists: Boolean + nt_description_in: [String] + nt_description_not: String + nt_description_not_contains: String + nt_description_not_in: [String] + nt_metadata_exists: Boolean + nt_name: String + nt_name_contains: String + nt_name_exists: Boolean + nt_name_in: [String] + nt_name_not: String + nt_name_not_contains: String + nt_name_not_in: [String] + nt_rules_exists: Boolean + sys: SysFilter +} + input cfSeoNestedFilter { AND: [cfSeoNestedFilter] OR: [cfSeoNestedFilter]