diff --git a/components/content-blocks/Image/Image.tsx b/components/content-blocks/Image/Image.tsx index 8fb52f4b..dd707e3a 100644 --- a/components/content-blocks/Image/Image.tsx +++ b/components/content-blocks/Image/Image.tsx @@ -1,8 +1,10 @@ import { FunctionComponent } from "react"; import { graphql, useFragment, FragmentType } from "@/gql/public-schema"; +import { useTranslation } from "react-i18next"; import withModal from "@/components/hoc/withModal/withModal"; import { BaseContentBlockProps } from "@/components/shapes"; import { imageShaper } from "@/helpers"; +import { fluidScale } from "@rubin-epo/epo-react-lib/styles"; import * as Styled from "./styles"; const Fragment = graphql(` @@ -13,12 +15,20 @@ const Fragment = graphql(` image { url { directUrlPreview + directUrlOriginal + PNG + HighJPG + LowJPG + preview } width height - additional { + metadata: additional { AltTextEN AltTextES + CaptionEN + CaptionES + Credit } } } @@ -35,12 +45,42 @@ interface ImageContentBlockProps extends BaseContentBlockProps { const ImageContentBlock: FunctionComponent = ( props ) => { + const { t } = useTranslation(); const { data, site, isOpen, openModal } = props; - const { caption, layout, image } = useFragment(Fragment, data); + const { + layout, + image: rawImage, + caption: fallbackCaption = "", + } = useFragment(Fragment, data); const finalLayout = isOpen ? "vertical" : layout; + const image = imageShaper(site, rawImage[0]); + + console.log({ image }); + + if (!image) return null; + + const { width, caption = fallbackCaption, credit } = image; + + const figCaption = `${caption !== null ? caption : ""}${ + credit + ? ` ${t("translation:image.credit", { + credit, + interpolation: { escapeValue: false }, + })}` + : "" + }`; + return ( - + {!isOpen && ( = ( /> )} - + ); diff --git a/components/content-blocks/Image/styles.ts b/components/content-blocks/Image/styles.ts index e96aa4e5..2088e802 100644 --- a/components/content-blocks/Image/styles.ts +++ b/components/content-blocks/Image/styles.ts @@ -4,7 +4,6 @@ import { Image as BaseImage, } from "@rubin-epo/epo-react-lib"; import BaseExpandContract from "@/atomic/ExpandContract/ExpandContract"; -import { fluidScale } from "@rubin-epo/epo-react-lib/styles"; import { BREAK_PHABLET } from "@/styles/globalStyles"; interface LayoutProp { @@ -12,11 +11,15 @@ interface LayoutProp { } export const Container = styled.section` - --image-content-block-padding: ${fluidScale("20px", "10px")}; + align-self: center; + max-width: var(--max-image-width); + width: 100%; position: relative; `; -export const Figure = styled(BaseFigure)` +export const Figure = styled(BaseFigure)< + LayoutProp & { $darkMode: boolean; $layout: string } +>` ${({ $layout, $darkMode }) => css` ${$darkMode && css` @@ -33,7 +36,7 @@ export const Figure = styled(BaseFigure)` padding: 0; } `} - padding: ${$darkMode ? 0 : "var(--image-content-block-padding)"}; + padding: var(--image-content-block-padding, 0); `} &:after { diff --git a/components/shapes/index.ts b/components/shapes/index.ts index 742a13e2..ab1ca709 100644 --- a/components/shapes/index.ts +++ b/components/shapes/index.ts @@ -1,6 +1,5 @@ export type { default as Category } from "./category"; export type { default as BaseContentBlockProps } from "./contentBlock"; -export type { Image } from "./image"; export type { InternalLink, InternalLinkWithChildren } from "./link"; export type { Locale, Localized } from "./locale"; export type { default as PageData } from "./page"; diff --git a/components/templates/InvestigationLandingPage/index.tsx b/components/templates/InvestigationLandingPage/index.tsx index 35e5b754..078f233c 100644 --- a/components/templates/InvestigationLandingPage/index.tsx +++ b/components/templates/InvestigationLandingPage/index.tsx @@ -12,12 +12,19 @@ const Fragment = graphql(` image { url { directUrlPreview + directUrlOriginal + PNG + HighJPG + LowJPG } width height - additional { + metadata: additional { AltTextEN AltTextES + CaptionEN + CaptionES + Credit } } children { diff --git a/gql/educator-schema/graphql.ts b/gql/educator-schema/graphql.ts index fdc459cd..ddd5b563 100644 --- a/gql/educator-schema/graphql.ts +++ b/gql/educator-schema/graphql.ts @@ -231,12 +231,14 @@ export type AnswerInterface_CountArgs = { }; export type AssetCriteriaInput = { + availableFilters?: InputMaybe>>; /** Narrows the query results based on the elements’ creation dates. */ dateCreated?: InputMaybe>>; /** Narrows the query results based on the assets’ files’ last-modified dates. */ dateModified?: InputMaybe; /** Narrows the query results based on the elements’ last-updated dates. */ dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; /** Narrows the query results based on the assets’ filenames. */ filename?: InputMaybe>>; /** Causes the query results to be returned in the order specified by the `id` argument. */ @@ -428,9 +430,11 @@ export type AssetInterfaceHeightArgs = { /** This is the interface implemented by all assets. */ export type AssetInterfaceNextArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -472,9 +476,11 @@ export type AssetInterfaceNextArgs = { /** This is the interface implemented by all assets. */ export type AssetInterfacePrevArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -1333,6 +1339,7 @@ export type EntryCriteriaInput = { editable?: InputMaybe; /** Narrows the query results based on the entries’ expiry dates. */ expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; /** Causes the query results to be returned in the order specified by the `id` argument. */ fixedOrder?: InputMaybe; /** Narrows the query results based on whether the elements have any descendants in their structure. */ @@ -1369,6 +1376,7 @@ export type EntryCriteriaInput = { /** Narrows the query results to only the entry that comes immediately before another element in its structure, provided by its ID. */ prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; /** Narrows the query results based on a reference string. */ ref?: InputMaybe>>; /** Narrows the query results to elements that relate to the provided element IDs. This argument is ignored, if `relatedToAll` is also used. */ @@ -1551,6 +1559,7 @@ export type EntryInterfaceAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1572,6 +1581,7 @@ export type EntryInterfaceAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1617,6 +1627,7 @@ export type EntryInterfaceChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1638,6 +1649,7 @@ export type EntryInterfaceChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1683,6 +1695,7 @@ export type EntryInterfaceDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1704,6 +1717,7 @@ export type EntryInterfaceDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1749,6 +1763,7 @@ export type EntryInterfaceLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1770,6 +1785,7 @@ export type EntryInterfaceLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1815,6 +1831,7 @@ export type EntryInterfaceNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1836,6 +1853,7 @@ export type EntryInterfaceNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1881,6 +1899,7 @@ export type EntryInterfaceParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1902,6 +1921,7 @@ export type EntryInterfaceParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1947,6 +1967,7 @@ export type EntryInterfacePrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1968,6 +1989,7 @@ export type EntryInterfacePrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -2387,8 +2409,12 @@ export type Query = { ping?: Maybe; /** Entries within the questions section. */ questionsEntries?: Maybe>>; + /** Entries within the referenceModals section. */ + referenceModalsEntries?: Maybe>>; /** Gets authenticated user. */ viewer?: Maybe; + /** Entries within the widgets section. */ + widgetsEntries?: Maybe>>; }; @@ -2425,9 +2451,11 @@ export type QueryAnswersArgs = { export type QueryAssetArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -2468,9 +2496,11 @@ export type QueryAssetArgs = { export type QueryAssetCountArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -2511,9 +2541,11 @@ export type QueryAssetCountArgs = { export type QueryAssetsArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -2707,6 +2739,7 @@ export type QueryEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -2728,6 +2761,7 @@ export type QueryEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -2772,6 +2806,7 @@ export type QueryEntryArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -2793,6 +2828,7 @@ export type QueryEntryArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -2837,6 +2873,7 @@ export type QueryEntryCountArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -2858,6 +2895,7 @@ export type QueryEntryCountArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -2968,6 +3006,7 @@ export type QueryHomepageEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -2989,6 +3028,7 @@ export type QueryHomepageEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -3031,6 +3071,7 @@ export type QueryInvestigationsEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -3052,6 +3093,7 @@ export type QueryInvestigationsEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -3094,6 +3136,7 @@ export type QueryPagesEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -3115,6 +3158,7 @@ export type QueryPagesEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -3157,6 +3201,7 @@ export type QueryQuestionsEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -3178,6 +3223,137 @@ export type QueryQuestionsEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type QueryReferenceModalsEntriesArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type QueryWidgetsEntriesArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -3681,6 +3857,8 @@ export type AnswerOptions_Option_BlockType_CountArgs = { field: Scalars['String']['input']; }; +export type ColorFilterToolObjects_NeoField = ColorFilterToolObjects_Filterimage_BlockType | ColorFilterToolObjects_Group_BlockType | ColorFilterToolObjects_Object_BlockType; + export type ColorFilterToolObjects_Filterimage_BlockType = ElementInterface & NeoBlockInterface & { __typename?: 'colorFilterToolObjects_filterimage_BlockType'; /** Return a number of related elements for a field. */ @@ -3894,31 +4072,54 @@ export type ColorFilterToolObjects_Object_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_CameraFilterTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorFilterToolBlock_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Table_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType; - -export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_barGraphTool_BlockType'; +export type ContentAssets_Asset = AssetInterface & ElementInterface & { + __typename?: 'contentAssets_Asset'; /** Return a number of related elements for a field. */ _count?: Maybe; + /** Alternative text for the asset. */ + alt?: Maybe; /** Whether the element is archived. */ archived?: Maybe; + availableFilters?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; + /** The date the asset file was last modified. */ + dateModified?: Maybe; /** The date the element was last updated. */ dateUpdated?: Maybe; + displayName?: Maybe; /** Whether the element is enabled. */ enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - graphBars: Array>; + /** The file extension for the asset file. */ + extension: Scalars['String']['output']; + /** The filename of the asset file. */ + filename: Scalars['String']['output']; + /** The focal point represented as an array with `x` and `y` keys, or null if it’s not an image. */ + focalPoint?: Maybe>>; + /** The ID of the folder that the asset belongs to. */ + folderId: Scalars['Int']['output']; + /** Returns the file’s format. */ + format?: Maybe; + /** Whether a user-defined focal point is set on the asset. */ + hasFocalPoint: Scalars['Boolean']['output']; + /** The height in pixels or null if it’s not an image. */ + height?: Maybe; /** The ID of the entity */ id?: Maybe; + /** An `` tag based on this asset. */ + img?: Maybe; + /** The file kind. */ + kind: Scalars['String']['output']; /** The language of the site element is associated with. */ language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; + /** The file’s MIME type, if it can be determined. */ + mimeType?: Maybe; + /** Returns the next element relative to this one, from a given set of criteria. */ + next?: Maybe; + /** The asset’s path in the volume. */ + path: Scalars['String']['output']; + /** Returns the previous element relative to this one, from a given set of criteria. */ + prev?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -3927,49 +4128,88 @@ export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockIn siteId?: Maybe; /** The unique identifier for an element-site relation. */ siteSettingsId?: Maybe; + /** The file size in bytes. */ + size?: Maybe; /** The element’s slug. */ slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; + /** Returns a `srcset` attribute value based on the given widths or x-descriptors. */ + srcset?: Maybe; /** The element’s status. */ status?: Maybe; - text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; /** The UID of the entity */ uid?: Maybe; /** The element’s URI. */ uri?: Maybe; - xAxisLabel?: Maybe; - yAxisLabel?: Maybe; - yAxisMax?: Maybe; - yAxisMin?: Maybe; + /** The full URL of the asset. This field accepts the same fields as the `transform` directive. */ + url?: Maybe; + /** The ID of the volume that the asset belongs to. */ + volumeId?: Maybe; + /** The width in pixels or null if it’s not an image. */ + width?: Maybe; }; -export type ContentBlocks_BarGraphTool_BlockType_CountArgs = { +export type ContentAssets_Asset_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { +export type ContentAssets_AssetAvailableFiltersArgs = { + label?: InputMaybe; +}; + + +export type ContentAssets_AssetFormatArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + + +export type ContentAssets_AssetHeightArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + + +export type ContentAssets_AssetNextArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; + dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; + displayName?: InputMaybe>>; + filename?: InputMaybe>>; fixedOrder?: InputMaybe; + folderId?: InputMaybe>>; + hasAlt?: InputMaybe; + height?: InputMaybe>>; id?: InputMaybe>>; inReverse?: InputMaybe; + includeSubfolders?: InputMaybe; + kind?: InputMaybe>>; limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -3982,36 +4222,215 @@ export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; + size?: InputMaybe>>; slug?: InputMaybe>>; title?: InputMaybe>>; - type?: InputMaybe>>; - typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; + uploader?: InputMaybe; uri?: InputMaybe>>; + volume?: InputMaybe>>; + volumeId?: InputMaybe>>; + width?: InputMaybe>>; + withTransforms?: InputMaybe>>; }; -export type ContentBlocks_CameraFilterTool_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_cameraFilterTool_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ + +export type ContentAssets_AssetPrevArgs = { + availableFilters?: InputMaybe>>; + dateCreated?: InputMaybe>>; + dateModified?: InputMaybe; + dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; + filename?: InputMaybe>>; + fixedOrder?: InputMaybe; + folderId?: InputMaybe>>; + hasAlt?: InputMaybe; + height?: InputMaybe>>; + id?: InputMaybe>>; + inReverse?: InputMaybe; + includeSubfolders?: InputMaybe; + kind?: InputMaybe>>; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + size?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uploader?: InputMaybe; + uri?: InputMaybe>>; + volume?: InputMaybe>>; + volumeId?: InputMaybe>>; + width?: InputMaybe>>; + withTransforms?: InputMaybe>>; +}; + + +export type ContentAssets_AssetSrcsetArgs = { + sizes: Array; +}; + + +export type ContentAssets_AssetUrlArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + + +export type ContentAssets_AssetWidthArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + +export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_CameraFilterTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorFilterToolBlock_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ReferenceModalBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Table_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType; + +export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_barGraphTool_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + graphBars: Array>; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + text?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; + xAxisLabel?: Maybe; + yAxisLabel?: Maybe; + yAxisMax?: Maybe; + yAxisMin?: Maybe; +}; + + +export type ContentBlocks_BarGraphTool_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type ContentBlocks_CameraFilterTool_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_cameraFilterTool_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ primaryOwnerId?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; @@ -4233,6 +4652,7 @@ export type ContentBlocks_ColorFilterToolBlock_BlockTypeColorFilterToolArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -4254,6 +4674,7 @@ export type ContentBlocks_ColorFilterToolBlock_BlockTypeColorFilterToolArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -4559,6 +4980,7 @@ export type ContentBlocks_QuestionBlock_BlockTypeQuestionEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -4580,6 +5002,7 @@ export type ContentBlocks_QuestionBlock_BlockTypeQuestionEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -4607,8 +5030,8 @@ export type ContentBlocks_QuestionBlock_BlockTypeQuestionEntriesArgs = { withStructure?: InputMaybe; }; -export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_scatterplotTool_BlockType'; +export type ContentBlocks_ReferenceModalBlock_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_referenceModalBlock_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ @@ -4629,7 +5052,7 @@ export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBloc level?: Maybe; /** The ID of the primary owner of the Neo block. */ primaryOwnerId?: Maybe; - scatterplotItems: Array>; + referenceModalEntries: Array>; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -4644,7 +5067,6 @@ export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBloc sortOrder?: Maybe; /** The element’s status. */ status?: Maybe; - text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ @@ -4657,30 +5079,53 @@ export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBloc uid?: Maybe; /** The element’s URI. */ uri?: Maybe; - xAxisLabel?: Maybe; - xAxisMin?: Maybe; - yAxisLabel?: Maybe; - yAxisMax?: Maybe; }; -export type ContentBlocks_ScatterplotTool_BlockType_CountArgs = { +export type ContentBlocks_ReferenceModalBlock_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_ScatterplotTool_BlockTypeScatterplotItemsArgs = { +export type ContentBlocks_ReferenceModalBlock_BlockTypeReferenceModalEntriesArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -4690,31 +5135,34 @@ export type ContentBlocks_ScatterplotTool_BlockTypeScatterplotItemsArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; }; -export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_table_BlockType'; +export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_scatterplotTool_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ archived?: Maybe; - caption?: Maybe; - contentHeading?: Maybe; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ dateUpdated?: Maybe; - displayTable: Array>; /** Whether the element is enabled. */ enabled?: Maybe; /** The ID of the field that owns the Neo block. */ @@ -4727,6 +5175,7 @@ export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface level?: Maybe; /** The ID of the primary owner of the Neo block. */ primaryOwnerId?: Maybe; + scatterplotItems: Array>; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -4741,6 +5190,7 @@ export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface sortOrder?: Maybe; /** The element’s status. */ status?: Maybe; + text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ @@ -4753,15 +5203,19 @@ export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface uid?: Maybe; /** The element’s URI. */ uri?: Maybe; + xAxisLabel?: Maybe; + xAxisMin?: Maybe; + yAxisLabel?: Maybe; + yAxisMax?: Maybe; }; -export type ContentBlocks_Table_BlockType_CountArgs = { +export type ContentBlocks_ScatterplotTool_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_Table_BlockTypeDisplayTableArgs = { +export type ContentBlocks_ScatterplotTool_BlockTypeScatterplotItemsArgs = { dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; fieldId?: InputMaybe>>; @@ -4787,14 +5241,106 @@ export type ContentBlocks_Table_BlockTypeDisplayTableArgs = { siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; }; -export type ContentBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_text_BlockType'; +export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_table_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + caption?: Maybe; + contentHeading?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + displayTable: Array>; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type ContentBlocks_Table_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type ContentBlocks_Table_BlockTypeDisplayTableArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type ContentBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_text_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ @@ -5272,6 +5818,7 @@ export type Homepage_Homepage_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5293,6 +5840,7 @@ export type Homepage_Homepage_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5337,6 +5885,7 @@ export type Homepage_Homepage_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5358,6 +5907,7 @@ export type Homepage_Homepage_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5437,6 +5987,7 @@ export type Homepage_Homepage_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5458,6 +6009,7 @@ export type Homepage_Homepage_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5502,6 +6054,7 @@ export type Homepage_Homepage_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5523,6 +6076,7 @@ export type Homepage_Homepage_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5567,6 +6121,7 @@ export type Homepage_Homepage_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5588,6 +6143,7 @@ export type Homepage_Homepage_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5637,6 +6193,7 @@ export type Homepage_Homepage_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5658,6 +6215,7 @@ export type Homepage_Homepage_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5702,6 +6260,7 @@ export type Homepage_Homepage_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5723,6 +6282,7 @@ export type Homepage_Homepage_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5807,9 +6367,11 @@ export type Images_ImageGroup_BlockType_CountArgs = { export type Images_ImageGroup_BlockTypeImagesArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -5982,6 +6544,7 @@ export type Investigations_Default_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6003,6 +6566,7 @@ export type Investigations_Default_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6047,6 +6611,7 @@ export type Investigations_Default_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6068,6 +6633,7 @@ export type Investigations_Default_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6147,6 +6713,7 @@ export type Investigations_Default_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6168,6 +6735,7 @@ export type Investigations_Default_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6212,6 +6780,7 @@ export type Investigations_Default_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6233,6 +6802,7 @@ export type Investigations_Default_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6277,6 +6847,7 @@ export type Investigations_Default_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6298,6 +6869,7 @@ export type Investigations_Default_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6342,6 +6914,7 @@ export type Investigations_Default_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6363,6 +6936,7 @@ export type Investigations_Default_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6407,6 +6981,7 @@ export type Investigations_Default_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6428,6 +7003,7 @@ export type Investigations_Default_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6587,6 +7163,7 @@ export type Investigations_InvestigationParent_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6608,6 +7185,7 @@ export type Investigations_InvestigationParent_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6652,6 +7230,7 @@ export type Investigations_InvestigationParent_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6673,6 +7252,7 @@ export type Investigations_InvestigationParent_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6717,6 +7297,7 @@ export type Investigations_InvestigationParent_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6738,6 +7319,7 @@ export type Investigations_InvestigationParent_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6804,6 +7386,7 @@ export type Investigations_InvestigationParent_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6825,6 +7408,7 @@ export type Investigations_InvestigationParent_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6869,6 +7453,7 @@ export type Investigations_InvestigationParent_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6890,6 +7475,7 @@ export type Investigations_InvestigationParent_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6934,6 +7520,7 @@ export type Investigations_InvestigationParent_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6955,6 +7542,7 @@ export type Investigations_InvestigationParent_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6999,6 +7587,7 @@ export type Investigations_InvestigationParent_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7020,6 +7609,7 @@ export type Investigations_InvestigationParent_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7178,6 +7768,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7199,6 +7790,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7243,6 +7835,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7264,6 +7857,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7308,6 +7902,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryDescendantsArgs = description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7329,6 +7924,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryDescendantsArgs = preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7373,6 +7969,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7394,6 +7991,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7438,6 +8036,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7459,6 +8058,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7503,6 +8103,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7524,6 +8125,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7568,6 +8170,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7589,6 +8192,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8118,6 +8722,7 @@ export type Pages_Pages_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8139,6 +8744,7 @@ export type Pages_Pages_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8183,6 +8789,7 @@ export type Pages_Pages_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8204,6 +8811,7 @@ export type Pages_Pages_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8283,6 +8891,7 @@ export type Pages_Pages_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8304,6 +8913,7 @@ export type Pages_Pages_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8348,6 +8958,7 @@ export type Pages_Pages_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8369,6 +8980,7 @@ export type Pages_Pages_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8413,6 +9025,7 @@ export type Pages_Pages_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8434,6 +9047,7 @@ export type Pages_Pages_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8483,6 +9097,7 @@ export type Pages_Pages_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8504,6 +9119,7 @@ export type Pages_Pages_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8548,6 +9164,7 @@ export type Pages_Pages_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8569,6 +9186,7 @@ export type Pages_Pages_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8728,6 +9346,7 @@ export type Pages_RedirectPage_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8749,6 +9368,7 @@ export type Pages_RedirectPage_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8793,6 +9413,7 @@ export type Pages_RedirectPage_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8814,6 +9435,7 @@ export type Pages_RedirectPage_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8858,6 +9480,7 @@ export type Pages_RedirectPage_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8879,6 +9502,7 @@ export type Pages_RedirectPage_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8923,6 +9547,7 @@ export type Pages_RedirectPage_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8944,6 +9569,7 @@ export type Pages_RedirectPage_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8988,6 +9614,7 @@ export type Pages_RedirectPage_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9009,6 +9636,7 @@ export type Pages_RedirectPage_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9053,6 +9681,7 @@ export type Pages_RedirectPage_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9074,6 +9703,7 @@ export type Pages_RedirectPage_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9118,6 +9748,7 @@ export type Pages_RedirectPage_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9139,6 +9770,7 @@ export type Pages_RedirectPage_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9241,6 +9873,7 @@ export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockTypeColorFilterToolAr description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9262,6 +9895,7 @@ export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockTypeColorFilterToolAr preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9427,6 +10061,7 @@ export type Questions_Default_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9448,6 +10083,7 @@ export type Questions_Default_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9531,6 +10167,7 @@ export type Questions_Default_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9552,6 +10189,7 @@ export type Questions_Default_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9596,6 +10234,7 @@ export type Questions_Default_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9617,6 +10256,7 @@ export type Questions_Default_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9661,6 +10301,7 @@ export type Questions_Default_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9682,6 +10323,7 @@ export type Questions_Default_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9761,6 +10403,7 @@ export type Questions_Default_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9782,6 +10425,7 @@ export type Questions_Default_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9826,6 +10470,7 @@ export type Questions_Default_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9847,6 +10492,7 @@ export type Questions_Default_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9891,6 +10537,7 @@ export type Questions_Default_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9912,6 +10559,7 @@ export type Questions_Default_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9974,31 +10622,79 @@ export type Questions_Default_EntryQuestionWidgetsBlockArgs = { uri?: InputMaybe>>; }; -export type ScatterplotItems_MatrixField = ScatterplotItems_Item_BlockType; +export type ReferenceModalsSectionEntryUnion = ReferenceModals_Default_Entry; -export type ScatterplotItems_Item_BlockType = ElementInterface & MatrixBlockInterface & { - __typename?: 'scatterplotItems_item_BlockType'; +export type ReferenceModals_Default_Entry = ElementInterface & EntryInterface & { + __typename?: 'referenceModals_default_Entry'; /** Return a number of related elements for a field. */ _count?: Maybe; + /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ + ancestors: Array; /** Whether the element is archived. */ archived?: Maybe; + /** Returns the entry’s canonical ID. */ + canonicalId?: Maybe; + /** Returns the entry’s canonical UUID. */ + canonicalUid?: Maybe; + /** The entry’s children, if the section is a structure. Accepts the same arguments as the `entries` query. */ + children: Array; + contentBlocks?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ dateUpdated?: Maybe; + /** The entry’s descendants, if the section is a structure. Accepts the same arguments as the `entries` query. */ + descendants: Array; + /** The draft ID (from the `drafts` table). */ + draftId?: Maybe; + /** The name of the draft. */ + draftName?: Maybe; + /** The notes for the draft. */ + draftNotes?: Maybe; /** Whether the element is enabled. */ enabled?: Maybe; - /** The ID of the field that owns the matrix block. */ - fieldId: Scalars['Int']['output']; + /** Whether the element is enabled for the site. */ + enabledForSite?: Maybe; + /** The expiry date of the entry. */ + expiryDate?: Maybe; /** The ID of the entity */ id?: Maybe; - itemLabel?: Maybe; + /** Returns whether this is a draft. */ + isDraft?: Maybe; + /** Returns whether this is a revision. */ + isRevision?: Maybe; + /** Returns whether this is an unpublished draft. */ + isUnpublishedDraft?: Maybe; /** The language of the site element is associated with. */ language?: Maybe; - /** The ID of the primary owner of the Matrix block. */ - primaryOwnerId: Scalars['Int']['output']; + /** The element’s level within its structure */ + level?: Maybe; + /** The element’s left position within its structure. */ + lft?: Maybe; + /** The same element in other locales. */ + localized: Array; + /** Returns the next element relative to this one, from a given set of criteria. */ + next?: Maybe; + /** The entry’s parent, if the section is a structure. */ + parent?: Maybe; + /** The entry’s post date. */ + postDate?: Maybe; + /** Returns the previous element relative to this one, from a given set of criteria. */ + prev?: Maybe; + /** The revision ID (from the `revisions` table). */ + revisionId?: Maybe; + /** The revision notes (from the `revisions` table). */ + revisionNotes?: Maybe; + /** The element’s right position within its structure. */ + rgt?: Maybe; + /** The element’s structure’s root ID */ + root?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; + /** The handle of the section that contains the entry. */ + sectionHandle: Scalars['String']['output']; + /** The ID of the section that contains the entry. */ + sectionId: Scalars['Int']['output']; /** The handle of the site the element is associated with. */ siteHandle?: Maybe; /** The ID of the site the element is associated with. */ @@ -10007,178 +10703,81 @@ export type ScatterplotItems_Item_BlockType = ElementInterface & MatrixBlockInte siteSettingsId?: Maybe; /** The element’s slug. */ slug?: Maybe; - /** The sort order of the matrix block within the owner element field. */ - sortOrder?: Maybe; + /** + * Returns the entry’s canonical ID. + * @deprecated this field has been deprecated since Craft 3.7.7. Use `canonicalId` instead. + */ + sourceId?: Maybe; + /** + * Returns the entry’s canonical UUID. + * @deprecated this field has been deprecated since Craft 3.7.7. Use `canonicalUid` instead. + */ + sourceUid?: Maybe; /** The element’s status. */ status?: Maybe; + /** The element’s structure ID. */ + structureId?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ trashed?: Maybe; - /** The handle of the matrix block’s type. */ + /** The handle of the entry type that contains the entry. */ typeHandle: Scalars['String']['output']; - /** The ID of the matrix block’s type. */ + /** The ID of the entry type that contains the entry. */ typeId: Scalars['Int']['output']; /** The UID of the entity */ uid?: Maybe; /** The element’s URI. */ uri?: Maybe; - xValue?: Maybe; - yValue?: Maybe; + /** The element’s full URL */ + url?: Maybe; }; -export type ScatterplotItems_Item_BlockType_CountArgs = { +export type ReferenceModals_Default_Entry_CountArgs = { field: Scalars['String']['input']; }; -export type SiteInfo_GlobalSet = ElementInterface & GlobalSetInterface & { - __typename?: 'siteInfo_GlobalSet'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The handle of the global set. */ - handle: Scalars['String']['output']; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The name of the global set. */ - name: Scalars['String']['output']; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - siteDescription?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - siteTitle?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; -}; - - -export type SiteInfo_GlobalSet_CountArgs = { - field: Scalars['String']['input']; -}; -export type SortOptions_Category = CategoryInterface & ElementInterface & { - __typename?: 'sortOptions_Category'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** The category’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ - ancestors: Array; - /** Whether the element is archived. */ - archived?: Maybe; - /** The category’s children. */ - children: Array; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** The category’s descendants, if the section is a structure. Accepts the same arguments as the `entries` query. */ - descendants: Array; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The handle of the group that contains the category. */ - groupHandle: Scalars['String']['output']; - /** The ID of the group that contains the category. */ - groupId: Scalars['Int']['output']; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The element’s level within its structure */ - level?: Maybe; - /** The element’s left position within its structure. */ - lft?: Maybe; - /** The same element in other locales. */ - localized: Array; - /** Returns the next element relative to this one, from a given set of criteria. */ - next?: Maybe; - /** The category’s parent. */ - parent?: Maybe; - /** Returns the previous element relative to this one, from a given set of criteria. */ - prev?: Maybe; - /** The element’s right position within its structure. */ - rgt?: Maybe; - /** The element’s structure’s root ID */ - root?: Maybe; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s structure ID. */ - structureId?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; - /** The element’s full URL */ - url?: Maybe; -}; - - -export type SortOptions_Category_CountArgs = { - field: Scalars['String']['input']; -}; - - -export type SortOptions_CategoryAncestorsArgs = { +export type ReferenceModals_Default_EntryAncestorsArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10188,43 +10787,64 @@ export type SortOptions_CategoryAncestorsArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryChildrenArgs = { +export type ReferenceModals_Default_EntryChildrenArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10234,43 +10854,99 @@ export type SortOptions_CategoryChildrenArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryDescendantsArgs = { +export type ReferenceModals_Default_EntryContentBlocksArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + + +export type ReferenceModals_Default_EntryDescendantsArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10280,43 +10956,64 @@ export type SortOptions_CategoryDescendantsArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryLocalizedArgs = { +export type ReferenceModals_Default_EntryLocalizedArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10326,43 +11023,64 @@ export type SortOptions_CategoryLocalizedArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryNextArgs = { +export type ReferenceModals_Default_EntryNextArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10372,43 +11090,64 @@ export type SortOptions_CategoryNextArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryParentArgs = { +export type ReferenceModals_Default_EntryParentArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10418,43 +11157,64 @@ export type SortOptions_CategoryParentArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryPrevArgs = { +export type ReferenceModals_Default_EntryPrevArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10464,27 +11224,32 @@ export type SortOptions_CategoryPrevArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type TableRow_MatrixField = TableRow_TableCell_BlockType; +export type ScatterplotItems_MatrixField = ScatterplotItems_Item_BlockType; -export type TableRow_TableCell_BlockType = ElementInterface & MatrixBlockInterface & { - __typename?: 'tableRow_tableCell_BlockType'; +export type ScatterplotItems_Item_BlockType = ElementInterface & MatrixBlockInterface & { + __typename?: 'scatterplotItems_item_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ archived?: Maybe; - cellContent?: Maybe; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -10495,11 +11260,11 @@ export type TableRow_TableCell_BlockType = ElementInterface & MatrixBlockInterfa fieldId: Scalars['Int']['output']; /** The ID of the entity */ id?: Maybe; + itemLabel?: Maybe; /** The language of the site element is associated with. */ language?: Maybe; /** The ID of the primary owner of the Matrix block. */ primaryOwnerId: Scalars['Int']['output']; - rowHeader?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -10526,13 +11291,1143 @@ export type TableRow_TableCell_BlockType = ElementInterface & MatrixBlockInterfa uid?: Maybe; /** The element’s URI. */ uri?: Maybe; + xValue?: Maybe; + yValue?: Maybe; }; -export type TableRow_TableCell_BlockType_CountArgs = { +export type ScatterplotItems_Item_BlockType_CountArgs = { field: Scalars['String']['input']; }; +export type SiteInfo_GlobalSet = ElementInterface & GlobalSetInterface & { + __typename?: 'siteInfo_GlobalSet'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The handle of the global set. */ + handle: Scalars['String']['output']; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The name of the global set. */ + name: Scalars['String']['output']; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + siteDescription?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + siteTitle?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type SiteInfo_GlobalSet_CountArgs = { + field: Scalars['String']['input']; +}; + +export type SortOptions_Category = CategoryInterface & ElementInterface & { + __typename?: 'sortOptions_Category'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** The category’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ + ancestors: Array; + /** Whether the element is archived. */ + archived?: Maybe; + /** The category’s children. */ + children: Array; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** The category’s descendants, if the section is a structure. Accepts the same arguments as the `entries` query. */ + descendants: Array; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The handle of the group that contains the category. */ + groupHandle: Scalars['String']['output']; + /** The ID of the group that contains the category. */ + groupId: Scalars['Int']['output']; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The element’s level within its structure */ + level?: Maybe; + /** The element’s left position within its structure. */ + lft?: Maybe; + /** The same element in other locales. */ + localized: Array; + /** Returns the next element relative to this one, from a given set of criteria. */ + next?: Maybe; + /** The category’s parent. */ + parent?: Maybe; + /** Returns the previous element relative to this one, from a given set of criteria. */ + prev?: Maybe; + /** The element’s right position within its structure. */ + rgt?: Maybe; + /** The element’s structure’s root ID */ + root?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s structure ID. */ + structureId?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; + /** The element’s full URL */ + url?: Maybe; +}; + + +export type SortOptions_Category_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type SortOptions_CategoryAncestorsArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryChildrenArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryDescendantsArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryLocalizedArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryNextArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryParentArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryPrevArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + +export type TableRow_MatrixField = TableRow_TableCell_BlockType; + +export type TableRow_TableCell_BlockType = ElementInterface & MatrixBlockInterface & { + __typename?: 'tableRow_tableCell_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + cellContent?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the matrix block. */ + fieldId: Scalars['Int']['output']; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The ID of the primary owner of the Matrix block. */ + primaryOwnerId: Scalars['Int']['output']; + rowHeader?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the matrix block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the matrix block’s type. */ + typeHandle: Scalars['String']['output']; + /** The ID of the matrix block’s type. */ + typeId: Scalars['Int']['output']; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type TableRow_TableCell_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + +export type WidgetsSectionEntryUnion = Widgets_ColorFilterTool_Entry; + +export type Widgets_ColorFilterTool_Entry = ElementInterface & EntryInterface & { + __typename?: 'widgets_colorFilterTool_Entry'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ + ancestors: Array; + /** Whether the element is archived. */ + archived?: Maybe; + /** Returns the entry’s canonical ID. */ + canonicalId?: Maybe; + /** Returns the entry’s canonical UUID. */ + canonicalUid?: Maybe; + /** The entry’s children, if the section is a structure. Accepts the same arguments as the `entries` query. */ + children: Array; + colorFilterToolObjects?: Maybe>>; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** The entry’s descendants, if the section is a structure. Accepts the same arguments as the `entries` query. */ + descendants: Array; + /** The draft ID (from the `drafts` table). */ + draftId?: Maybe; + /** The name of the draft. */ + draftName?: Maybe; + /** The notes for the draft. */ + draftNotes?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** Whether the element is enabled for the site. */ + enabledForSite?: Maybe; + /** The expiry date of the entry. */ + expiryDate?: Maybe; + filterColorOptions?: Maybe>>; + /** The ID of the entity */ + id?: Maybe; + /** Returns whether this is a draft. */ + isDraft?: Maybe; + /** Returns whether this is a revision. */ + isRevision?: Maybe; + /** Returns whether this is an unpublished draft. */ + isUnpublishedDraft?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The element’s level within its structure */ + level?: Maybe; + /** The element’s left position within its structure. */ + lft?: Maybe; + /** The same element in other locales. */ + localized: Array; + /** Returns the next element relative to this one, from a given set of criteria. */ + next?: Maybe; + /** The entry’s parent, if the section is a structure. */ + parent?: Maybe; + /** The entry’s post date. */ + postDate?: Maybe; + /** Returns the previous element relative to this one, from a given set of criteria. */ + prev?: Maybe; + readOnly?: Maybe; + /** The revision ID (from the `revisions` table). */ + revisionId?: Maybe; + /** The revision notes (from the `revisions` table). */ + revisionNotes?: Maybe; + /** The element’s right position within its structure. */ + rgt?: Maybe; + /** The element’s structure’s root ID */ + root?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the section that contains the entry. */ + sectionHandle: Scalars['String']['output']; + /** The ID of the section that contains the entry. */ + sectionId: Scalars['Int']['output']; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** + * Returns the entry’s canonical ID. + * @deprecated this field has been deprecated since Craft 3.7.7. Use `canonicalId` instead. + */ + sourceId?: Maybe; + /** + * Returns the entry’s canonical UUID. + * @deprecated this field has been deprecated since Craft 3.7.7. Use `canonicalUid` instead. + */ + sourceUid?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s structure ID. */ + structureId?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the entry type that contains the entry. */ + typeHandle: Scalars['String']['output']; + /** The ID of the entry type that contains the entry. */ + typeId: Scalars['Int']['output']; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; + /** The element’s full URL */ + url?: Maybe; +}; + + +export type Widgets_ColorFilterTool_Entry_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type Widgets_ColorFilterTool_EntryAncestorsArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryChildrenArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryColorFilterToolObjectsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + + +export type Widgets_ColorFilterTool_EntryDescendantsArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryFilterColorOptionsArgs = { + label?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryLocalizedArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryNextArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryParentArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryPrevArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + export type StoredAnswersQueryVariables = Exact<{ userId?: InputMaybe; investigationId?: InputMaybe; diff --git a/gql/public-schema/gql.ts b/gql/public-schema/gql.ts index 26d1e51a..c3bf6695 100644 --- a/gql/public-schema/gql.ts +++ b/gql/public-schema/gql.ts @@ -34,7 +34,7 @@ const documents = { "\n fragment BarGraphToolBlock on contentBlocks_barGraphTool_BlockType {\n __typename\n id\n title\n yAxisMin\n yAxisMax\n yAxisLabel\n xAxisLabel\n graphBars {\n ... on graphBars_bar_BlockType {\n __typename\n yValue\n label\n }\n }\n }\n": types.BarGraphToolBlockFragmentDoc, "\n fragment ColorFilterToolBlock on widgets_colorFilterTool_Entry {\n title\n filterColorOptionsLabels: filterColorOptions(label: true)\n filterColorOptionsValues: filterColorOptions(label: true)\n colorFilterToolObjects {\n ... on colorFilterToolObjects_group_BlockType {\n groupName\n objects: children {\n ... on colorFilterToolObjects_object_BlockType {\n objectName\n objectCaption\n filterImages: children {\n ... on colorFilterToolObjects_filterimage_BlockType {\n isEnabled\n isActive\n image {\n url {\n directUrlPreview\n }\n width\n height\n additional {\n AltTextEN\n AltTextES\n }\n }\n max: colorToolMax\n min: colorToolMin\n defaultValue: colorToolDefaultValue\n label: filter\n color: preSelectedColor\n }\n }\n }\n }\n }\n }\n }\n": types.ColorFilterToolBlockFragmentDoc, "\n fragment FilterToolBlock on contentBlocks_filterTool_BlockType {\n __typename\n id\n preSelectedColor\n readOnly\n }\n": types.FilterToolBlockFragmentDoc, - "\n fragment ImageBlock on contentBlocks_image_BlockType {\n id\n caption\n layout\n image {\n url {\n directUrlPreview\n }\n width\n height\n additional {\n AltTextEN\n AltTextES\n }\n }\n }\n": types.ImageBlockFragmentDoc, + "\n fragment ImageBlock on contentBlocks_image_BlockType {\n id\n caption\n layout\n image {\n url {\n directUrlPreview\n directUrlOriginal\n PNG\n HighJPG\n LowJPG\n preview\n }\n width\n height\n metadata: additional {\n AltTextEN\n AltTextES\n CaptionEN\n CaptionES\n Credit\n }\n }\n }\n": types.ImageBlockFragmentDoc, "\n fragment InteractionGroupContainerBlock on contentBlocks_group_BlockType {\n __typename\n childBlocks: children {\n __typename\n id\n ...TextBlock\n ...ImageBlock\n ...TableBlock\n ...QuestionsBlock\n ...BarGraphToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n }\n": types.InteractionGroupContainerBlockFragmentDoc, "\n fragment QuestionsBlock on contentBlocks_questionBlock_BlockType {\n id\n questionEntries {\n __typename\n id\n ...QuestionFactory\n }\n }\n": types.QuestionsBlockFragmentDoc, "\n fragment ScatterplotToolBlock on contentBlocks_scatterplotTool_BlockType {\n id\n title\n xAxisMin\n yAxisMax\n yAxisLabel\n xAxisLabel\n scatterplotItems {\n ... on scatterplotItems_item_BlockType {\n xValue\n yValue\n itemLabel\n }\n }\n }\n": types.ScatterplotToolBlockFragmentDoc, @@ -47,7 +47,7 @@ const documents = { "\n fragment TemplateFactory on EntryInterface {\n __typename\n ...PageTemplate\n }\n": types.TemplateFactoryFragmentDoc, "\n fragment HomepageTemplate on homepage_homepage_Entry {\n id\n title\n contentBlocks {\n ...ContentBlockFactory\n }\n }\n": types.HomepageTemplateFragmentDoc, "\n fragment InvestigationChildPageTemplate on investigations_default_Entry {\n __typename\n id\n title\n contentBlocks {\n ...ContentBlockFactory\n }\n hasSavePoint\n prev(section: \"investigations\") {\n __typename\n uri\n }\n next(section: \"investigations\") {\n __typename\n uri\n }\n parent {\n id\n children(section: \"investigations\", type: \"default\") {\n ... on investigations_investigationSectionBreakChild_Entry {\n __typename\n id\n title\n uri\n }\n ... on investigations_default_Entry {\n __typename\n id\n title\n hasSavePoint\n uri\n contentBlocks {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n ... on contentBlocks_twoColumnContainer_BlockType {\n __typename\n columns: children {\n ... on contentBlocks_colLeft_BlockType {\n __typename\n children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n ... on contentBlocks_group_BlockType {\n __typename\n group: children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n }\n }\n }\n }\n ... on contentBlocks_colRight_BlockType {\n __typename\n children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n ... on contentBlocks_group_BlockType {\n __typename\n group: children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n }\n }\n }\n }\n }\n }\n ... on contentBlocks_group_BlockType {\n __typename\n group: children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n": types.InvestigationChildPageTemplateFragmentDoc, - "\n fragment InvestigationLandingPageTemplate on investigations_investigationParent_Entry {\n title\n image {\n url {\n directUrlPreview\n }\n width\n height\n additional {\n AltTextEN\n AltTextES\n }\n }\n children {\n uri\n }\n }\n": types.InvestigationLandingPageTemplateFragmentDoc, + "\n fragment InvestigationLandingPageTemplate on investigations_investigationParent_Entry {\n title\n image {\n url {\n directUrlPreview\n directUrlOriginal\n PNG\n HighJPG\n LowJPG\n }\n width\n height\n metadata: additional {\n AltTextEN\n AltTextES\n CaptionEN\n CaptionES\n Credit\n }\n }\n children {\n uri\n }\n }\n": types.InvestigationLandingPageTemplateFragmentDoc, "\n fragment InvestigationSectionBreakTemplate on investigations_investigationSectionBreakChild_Entry {\n __typename\n id\n title\n text\n prev(section: \"investigations\") {\n __typename\n uri\n }\n next(section: \"investigations\") {\n __typename\n uri\n }\n parent {\n id\n children(section: \"investigations\", type: \"default\") {\n ... on investigations_investigationSectionBreakChild_Entry {\n __typename\n id\n title\n uri\n }\n ... on investigations_default_Entry {\n __typename\n id\n title\n hasSavePoint\n uri\n contentBlocks {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n ... on contentBlocks_twoColumnContainer_BlockType {\n __typename\n columns: children {\n ... on contentBlocks_colLeft_BlockType {\n __typename\n children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n }\n }\n ... on contentBlocks_colRight_BlockType {\n __typename\n children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n }\n }\n }\n }\n ... on contentBlocks_group_BlockType {\n __typename\n group: children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n ... on contentBlocks_twoColumnContainer_BlockType {\n __typename\n columns: children {\n ... on contentBlocks_colLeft_BlockType {\n __typename\n children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n }\n }\n ... on contentBlocks_colRight_BlockType {\n __typename\n children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ... on questions_default_Entry {\n id\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n": types.InvestigationSectionBreakTemplateFragmentDoc, "\n fragment PageTemplate on pages_pages_Entry {\n id\n title\n contentBlocks {\n ...ContentBlockFactory\n }\n }\n": types.PageTemplateFragmentDoc, "fragment AuthFragment on Auth {\n jwt\n jwtExpiresAt\n refreshToken\n refreshTokenExpiresAt\n user {\n ...UserFragment\n }\n}": types.AuthFragmentFragmentDoc, @@ -155,7 +155,7 @@ export function graphql(source: "\n fragment FilterToolBlock on contentBlocks_f /** * 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 ImageBlock on contentBlocks_image_BlockType {\n id\n caption\n layout\n image {\n url {\n directUrlPreview\n }\n width\n height\n additional {\n AltTextEN\n AltTextES\n }\n }\n }\n"): (typeof documents)["\n fragment ImageBlock on contentBlocks_image_BlockType {\n id\n caption\n layout\n image {\n url {\n directUrlPreview\n }\n width\n height\n additional {\n AltTextEN\n AltTextES\n }\n }\n }\n"]; +export function graphql(source: "\n fragment ImageBlock on contentBlocks_image_BlockType {\n id\n caption\n layout\n image {\n url {\n directUrlPreview\n directUrlOriginal\n PNG\n HighJPG\n LowJPG\n preview\n }\n width\n height\n metadata: additional {\n AltTextEN\n AltTextES\n CaptionEN\n CaptionES\n Credit\n }\n }\n }\n"): (typeof documents)["\n fragment ImageBlock on contentBlocks_image_BlockType {\n id\n caption\n layout\n image {\n url {\n directUrlPreview\n directUrlOriginal\n PNG\n HighJPG\n LowJPG\n preview\n }\n width\n height\n metadata: additional {\n AltTextEN\n AltTextES\n CaptionEN\n CaptionES\n Credit\n }\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -207,7 +207,7 @@ export function graphql(source: "\n fragment InvestigationChildPageTemplate on /** * 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 InvestigationLandingPageTemplate on investigations_investigationParent_Entry {\n title\n image {\n url {\n directUrlPreview\n }\n width\n height\n additional {\n AltTextEN\n AltTextES\n }\n }\n children {\n uri\n }\n }\n"): (typeof documents)["\n fragment InvestigationLandingPageTemplate on investigations_investigationParent_Entry {\n title\n image {\n url {\n directUrlPreview\n }\n width\n height\n additional {\n AltTextEN\n AltTextES\n }\n }\n children {\n uri\n }\n }\n"]; +export function graphql(source: "\n fragment InvestigationLandingPageTemplate on investigations_investigationParent_Entry {\n title\n image {\n url {\n directUrlPreview\n directUrlOriginal\n PNG\n HighJPG\n LowJPG\n }\n width\n height\n metadata: additional {\n AltTextEN\n AltTextES\n CaptionEN\n CaptionES\n Credit\n }\n }\n children {\n uri\n }\n }\n"): (typeof documents)["\n fragment InvestigationLandingPageTemplate on investigations_investigationParent_Entry {\n title\n image {\n url {\n directUrlPreview\n directUrlOriginal\n PNG\n HighJPG\n LowJPG\n }\n width\n height\n metadata: additional {\n AltTextEN\n AltTextES\n CaptionEN\n CaptionES\n Credit\n }\n }\n children {\n uri\n }\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/public-schema/graphql.ts b/gql/public-schema/graphql.ts index bba61ad2..d47949cf 100644 --- a/gql/public-schema/graphql.ts +++ b/gql/public-schema/graphql.ts @@ -170,12 +170,14 @@ export type AddressInterface_CountArgs = { }; export type AssetCriteriaInput = { + availableFilters?: InputMaybe>>; /** Narrows the query results based on the elements’ creation dates. */ dateCreated?: InputMaybe>>; /** Narrows the query results based on the assets’ files’ last-modified dates. */ dateModified?: InputMaybe; /** Narrows the query results based on the elements’ last-updated dates. */ dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; /** Narrows the query results based on the assets’ filenames. */ filename?: InputMaybe>>; /** Causes the query results to be returned in the order specified by the `id` argument. */ @@ -371,9 +373,11 @@ export type AssetInterfaceHeightArgs = { /** This is the interface implemented by all assets. */ export type AssetInterfaceNextArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -415,9 +419,11 @@ export type AssetInterfaceNextArgs = { /** This is the interface implemented by all assets. */ export type AssetInterfacePrevArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -2368,6 +2374,8 @@ export type Query = { ping?: Maybe; /** Entries within the questions section. */ questionsEntries?: Maybe>>; + /** Entries within the referenceModals section. */ + referenceModalsEntries?: Maybe>>; /** This query is used to query for a single user. */ user?: Maybe; /** This query is used to return the number of users. */ @@ -2481,9 +2489,11 @@ export type QueryAddressesArgs = { export type QueryAssetArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -2524,9 +2534,11 @@ export type QueryAssetArgs = { export type QueryAssetCountArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -2567,9 +2579,11 @@ export type QueryAssetCountArgs = { export type QueryAssetsArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -3274,6 +3288,71 @@ export type QueryQuestionsEntriesArgs = { }; +export type QueryReferenceModalsEntriesArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + export type QueryUserArgs = { assetUploaders?: InputMaybe; authors?: InputMaybe; @@ -4151,31 +4230,54 @@ export type ColorFilterToolObjects_Object_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_CameraFilterTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorFilterToolBlock_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Table_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType; - -export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_barGraphTool_BlockType'; +export type ContentAssets_Asset = AssetInterface & ElementInterface & { + __typename?: 'contentAssets_Asset'; /** Return a number of related elements for a field. */ _count?: Maybe; + /** Alternative text for the asset. */ + alt?: Maybe; /** Whether the element is archived. */ archived?: Maybe; + availableFilters?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; + /** The date the asset file was last modified. */ + dateModified?: Maybe; /** The date the element was last updated. */ dateUpdated?: Maybe; + displayName?: Maybe; /** Whether the element is enabled. */ enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - graphBars: Array>; + /** The file extension for the asset file. */ + extension: Scalars['String']['output']; + /** The filename of the asset file. */ + filename: Scalars['String']['output']; + /** The focal point represented as an array with `x` and `y` keys, or null if it’s not an image. */ + focalPoint?: Maybe>>; + /** The ID of the folder that the asset belongs to. */ + folderId: Scalars['Int']['output']; + /** Returns the file’s format. */ + format?: Maybe; + /** Whether a user-defined focal point is set on the asset. */ + hasFocalPoint: Scalars['Boolean']['output']; + /** The height in pixels or null if it’s not an image. */ + height?: Maybe; /** The ID of the entity */ id?: Maybe; + /** An `` tag based on this asset. */ + img?: Maybe; + /** The file kind. */ + kind: Scalars['String']['output']; /** The language of the site element is associated with. */ language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; + /** The file’s MIME type, if it can be determined. */ + mimeType?: Maybe; + /** Returns the next element relative to this one, from a given set of criteria. */ + next?: Maybe; + /** The asset’s path in the volume. */ + path: Scalars['String']['output']; + /** Returns the previous element relative to this one, from a given set of criteria. */ + prev?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -4184,49 +4286,92 @@ export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockIn siteId?: Maybe; /** The unique identifier for an element-site relation. */ siteSettingsId?: Maybe; + /** The file size in bytes. */ + size?: Maybe; /** The element’s slug. */ slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; + /** Returns a `srcset` attribute value based on the given widths or x-descriptors. */ + srcset?: Maybe; /** The element’s status. */ status?: Maybe; - text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; /** The UID of the entity */ uid?: Maybe; + /** The user who first added this asset (if known). */ + uploader?: Maybe; + /** The ID of the user who first added this asset (if known). */ + uploaderId?: Maybe; /** The element’s URI. */ uri?: Maybe; - xAxisLabel?: Maybe; - yAxisLabel?: Maybe; - yAxisMax?: Maybe; - yAxisMin?: Maybe; + /** The full URL of the asset. This field accepts the same fields as the `transform` directive. */ + url?: Maybe; + /** The ID of the volume that the asset belongs to. */ + volumeId?: Maybe; + /** The width in pixels or null if it’s not an image. */ + width?: Maybe; }; -export type ContentBlocks_BarGraphTool_BlockType_CountArgs = { +export type ContentAssets_Asset_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { +export type ContentAssets_AssetAvailableFiltersArgs = { + label?: InputMaybe; +}; + + +export type ContentAssets_AssetFormatArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + + +export type ContentAssets_AssetHeightArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + + +export type ContentAssets_AssetNextArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; + dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; + displayName?: InputMaybe>>; + filename?: InputMaybe>>; fixedOrder?: InputMaybe; + folderId?: InputMaybe>>; + hasAlt?: InputMaybe; + height?: InputMaybe>>; id?: InputMaybe>>; inReverse?: InputMaybe; + includeSubfolders?: InputMaybe; + kind?: InputMaybe>>; limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -4239,191 +4384,145 @@ export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; + size?: InputMaybe>>; slug?: InputMaybe>>; title?: InputMaybe>>; - type?: InputMaybe>>; - typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; + uploader?: InputMaybe; uri?: InputMaybe>>; + volume?: InputMaybe>>; + volumeId?: InputMaybe>>; + width?: InputMaybe>>; + withTransforms?: InputMaybe>>; }; -export type ContentBlocks_CameraFilterTool_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_cameraFilterTool_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; -}; - - -export type ContentBlocks_CameraFilterTool_BlockType_CountArgs = { - field: Scalars['String']['input']; -}; -export type ContentBlocks_ColLeft_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_colLeft_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The child block types for this Neo block */ - children?: Maybe>>; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; +export type ContentAssets_AssetPrevArgs = { + availableFilters?: InputMaybe>>; + dateCreated?: InputMaybe>>; + dateModified?: InputMaybe; + dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; + filename?: InputMaybe>>; + fixedOrder?: InputMaybe; + folderId?: InputMaybe>>; + hasAlt?: InputMaybe; + height?: InputMaybe>>; + id?: InputMaybe>>; + inReverse?: InputMaybe; + includeSubfolders?: InputMaybe; + kind?: InputMaybe>>; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + size?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uploader?: InputMaybe; + uri?: InputMaybe>>; + volume?: InputMaybe>>; + volumeId?: InputMaybe>>; + width?: InputMaybe>>; + withTransforms?: InputMaybe>>; }; -export type ContentBlocks_ColLeft_BlockType_CountArgs = { - field: Scalars['String']['input']; +export type ContentAssets_AssetSrcsetArgs = { + sizes: Array; }; -export type ContentBlocks_ColRight_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_colRight_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The child block types for this Neo block */ - children?: Maybe>>; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; + +export type ContentAssets_AssetUploaderArgs = { + assetUploaders?: InputMaybe; + authors?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + email?: InputMaybe>>; + firstName?: InputMaybe>>; + fixedOrder?: InputMaybe; + fullName?: InputMaybe>>; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasPhoto?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + lastName?: InputMaybe>>; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + username?: InputMaybe>>; }; -export type ContentBlocks_ColRight_BlockType_CountArgs = { - field: Scalars['String']['input']; +export type ContentAssets_AssetUrlArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; }; -export type ContentBlocks_ColorFilterToolBlock_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_colorFilterToolBlock_BlockType'; + +export type ContentAssets_AssetWidthArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + +export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_CameraFilterTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorFilterToolBlock_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ReferenceModalBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Table_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType; + +export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_barGraphTool_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ archived?: Maybe; - colorFilterTool: Array>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -4432,6 +4531,7 @@ export type ContentBlocks_ColorFilterToolBlock_BlockType = ElementInterface & Ne enabled?: Maybe; /** The ID of the field that owns the Neo block. */ fieldId?: Maybe; + graphBars: Array>; /** The ID of the entity */ id?: Maybe; /** The language of the site element is associated with. */ @@ -4454,6 +4554,7 @@ export type ContentBlocks_ColorFilterToolBlock_BlockType = ElementInterface & Ne sortOrder?: Maybe; /** The element’s status. */ status?: Maybe; + text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ @@ -4466,53 +4567,30 @@ export type ContentBlocks_ColorFilterToolBlock_BlockType = ElementInterface & Ne uid?: Maybe; /** The element’s URI. */ uri?: Maybe; + xAxisLabel?: Maybe; + yAxisLabel?: Maybe; + yAxisMax?: Maybe; + yAxisMin?: Maybe; }; -export type ContentBlocks_ColorFilterToolBlock_BlockType_CountArgs = { +export type ContentBlocks_BarGraphTool_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_ColorFilterToolBlock_BlockTypeColorFilterToolArgs = { - after?: InputMaybe; - ancestorDist?: InputMaybe; - ancestorOf?: InputMaybe; - answerType?: InputMaybe>>; - authorGroup?: InputMaybe>>; - authorGroupId?: InputMaybe>>; - authorId?: InputMaybe>>; - before?: InputMaybe; +export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; - descendantDist?: InputMaybe; - descendantOf?: InputMaybe; - description?: InputMaybe>>; - editable?: InputMaybe; - expiryDate?: InputMaybe>>; - filterColorOptions?: InputMaybe>>; + fieldId?: InputMaybe>>; fixedOrder?: InputMaybe; - hasDescendants?: InputMaybe; - hasSavePoint?: InputMaybe; - hideTitle?: InputMaybe; id?: InputMaybe>>; - image?: InputMaybe>>; inReverse?: InputMaybe; - leaves?: InputMaybe; - level?: InputMaybe; limit?: InputMaybe; - linkTo?: InputMaybe>>; - nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; - pageType?: InputMaybe>>; - positionedAfter?: InputMaybe; - positionedBefore?: InputMaybe; - postDate?: InputMaybe>>; preferSites?: InputMaybe>>; - prevSiblingOf?: InputMaybe; - questionText?: InputMaybe>>; - readOnly?: InputMaybe; + primaryOwnerId?: InputMaybe>>; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -4522,26 +4600,20 @@ export type ContentBlocks_ColorFilterToolBlock_BlockTypeColorFilterToolArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; - section?: InputMaybe>>; - sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; - structureId?: InputMaybe; - text?: InputMaybe>>; title?: InputMaybe>>; type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; - widgetInstructions?: InputMaybe>>; - withStructure?: InputMaybe; }; -export type ContentBlocks_FilterTool_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_filterTool_BlockType'; +export type ContentBlocks_CameraFilterTool_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_cameraFilterTool_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ @@ -4560,10 +4632,8 @@ export type ContentBlocks_FilterTool_BlockType = ElementInterface & NeoBlockInte language?: Maybe; /** The Neo block’s level. */ level?: Maybe; - preSelectedColor?: Maybe; /** The ID of the primary owner of the Neo block. */ primaryOwnerId?: Maybe; - readOnly?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -4593,17 +4663,12 @@ export type ContentBlocks_FilterTool_BlockType = ElementInterface & NeoBlockInte }; -export type ContentBlocks_FilterTool_BlockType_CountArgs = { +export type ContentBlocks_CameraFilterTool_BlockType_CountArgs = { field: Scalars['String']['input']; }; - -export type ContentBlocks_FilterTool_BlockTypePreSelectedColorArgs = { - label?: InputMaybe; -}; - -export type ContentBlocks_Group_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_group_BlockType'; +export type ContentBlocks_ColLeft_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_colLeft_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ @@ -4655,17 +4720,18 @@ export type ContentBlocks_Group_BlockType = ElementInterface & NeoBlockInterface }; -export type ContentBlocks_Group_BlockType_CountArgs = { +export type ContentBlocks_ColLeft_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_Image_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_image_BlockType'; +export type ContentBlocks_ColRight_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_colRight_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ archived?: Maybe; - caption?: Maybe; + /** The child block types for this Neo block */ + children?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -4676,11 +4742,8 @@ export type ContentBlocks_Image_BlockType = ElementInterface & NeoBlockInterface fieldId?: Maybe; /** The ID of the entity */ id?: Maybe; - /** Canto Dam Asset field */ - image?: Maybe>>; /** The language of the site element is associated with. */ language?: Maybe; - layout?: Maybe; /** The Neo block’s level. */ level?: Maybe; /** The ID of the primary owner of the Neo block. */ @@ -4714,43 +4777,17 @@ export type ContentBlocks_Image_BlockType = ElementInterface & NeoBlockInterface }; -export type ContentBlocks_Image_BlockType_CountArgs = { +export type ContentBlocks_ColRight_BlockType_CountArgs = { field: Scalars['String']['input']; }; - -export type ContentBlocks_Image_BlockTypeImageArgs = { - except?: InputMaybe>>; - first?: InputMaybe; - forPage?: InputMaybe; - last?: InputMaybe; - nth?: InputMaybe; - random?: InputMaybe; - reverse?: InputMaybe; - shuffle?: InputMaybe; - skip?: InputMaybe; - sortBy?: InputMaybe>>; - sortByDesc?: InputMaybe>>; - where?: InputMaybe; - whereBetween?: InputMaybe; - whereIn?: InputMaybe; - whereNotBetween?: InputMaybe; - whereNotIn?: InputMaybe; - whereNotNull?: InputMaybe; - whereNull?: InputMaybe; -}; - - -export type ContentBlocks_Image_BlockTypeLayoutArgs = { - label?: InputMaybe; -}; - -export type ContentBlocks_QuestionBlock_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_questionBlock_BlockType'; +export type ContentBlocks_ColorFilterToolBlock_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_colorFilterToolBlock_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ archived?: Maybe; + colorFilterTool: Array>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -4767,7 +4804,6 @@ export type ContentBlocks_QuestionBlock_BlockType = ElementInterface & NeoBlockI level?: Maybe; /** The ID of the primary owner of the Neo block. */ primaryOwnerId?: Maybe; - questionEntries: Array>; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -4797,12 +4833,12 @@ export type ContentBlocks_QuestionBlock_BlockType = ElementInterface & NeoBlockI }; -export type ContentBlocks_QuestionBlock_BlockType_CountArgs = { +export type ContentBlocks_ColorFilterToolBlock_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_QuestionBlock_BlockTypeQuestionEntriesArgs = { +export type ContentBlocks_ColorFilterToolBlock_BlockTypeColorFilterToolArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -4868,8 +4904,8 @@ export type ContentBlocks_QuestionBlock_BlockTypeQuestionEntriesArgs = { withStructure?: InputMaybe; }; -export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_scatterplotTool_BlockType'; +export type ContentBlocks_FilterTool_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_filterTool_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ @@ -4888,9 +4924,10 @@ export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBloc language?: Maybe; /** The Neo block’s level. */ level?: Maybe; + preSelectedColor?: Maybe; /** The ID of the primary owner of the Neo block. */ primaryOwnerId?: Maybe; - scatterplotItems: Array>; + readOnly?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -4905,7 +4942,6 @@ export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBloc sortOrder?: Maybe; /** The element’s status. */ status?: Maybe; - text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ @@ -4918,64 +4954,30 @@ export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBloc uid?: Maybe; /** The element’s URI. */ uri?: Maybe; - xAxisLabel?: Maybe; - xAxisMin?: Maybe; - yAxisLabel?: Maybe; - yAxisMax?: Maybe; }; -export type ContentBlocks_ScatterplotTool_BlockType_CountArgs = { +export type ContentBlocks_FilterTool_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_ScatterplotTool_BlockTypeScatterplotItemsArgs = { - dateCreated?: InputMaybe>>; - dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; - fixedOrder?: InputMaybe; - id?: InputMaybe>>; - inReverse?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe; - preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; - ref?: InputMaybe>>; - relatedTo?: InputMaybe>>; - relatedToAll?: InputMaybe>>; - relatedToAssets?: InputMaybe>>; - relatedToCategories?: InputMaybe>>; - relatedToEntries?: InputMaybe>>; - relatedToTags?: InputMaybe>>; - relatedToUsers?: InputMaybe>>; - search?: InputMaybe; - site?: InputMaybe>>; - siteId?: InputMaybe>>; - siteSettingsId?: InputMaybe>>; - slug?: InputMaybe>>; - title?: InputMaybe>>; - type?: InputMaybe>>; - typeId?: InputMaybe>>; - uid?: InputMaybe>>; - unique?: InputMaybe; - uri?: InputMaybe>>; +export type ContentBlocks_FilterTool_BlockTypePreSelectedColorArgs = { + label?: InputMaybe; }; -export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_table_BlockType'; +export type ContentBlocks_Group_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_group_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ archived?: Maybe; - caption?: Maybe; - contentHeading?: Maybe; + /** The child block types for this Neo block */ + children?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ dateUpdated?: Maybe; - displayTable: Array>; /** Whether the element is enabled. */ enabled?: Maybe; /** The ID of the field that owns the Neo block. */ @@ -5017,49 +5019,17 @@ export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface }; -export type ContentBlocks_Table_BlockType_CountArgs = { +export type ContentBlocks_Group_BlockType_CountArgs = { field: Scalars['String']['input']; }; - -export type ContentBlocks_Table_BlockTypeDisplayTableArgs = { - dateCreated?: InputMaybe>>; - dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; - fixedOrder?: InputMaybe; - id?: InputMaybe>>; - inReverse?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe; - preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; - ref?: InputMaybe>>; - relatedTo?: InputMaybe>>; - relatedToAll?: InputMaybe>>; - relatedToAssets?: InputMaybe>>; - relatedToCategories?: InputMaybe>>; - relatedToEntries?: InputMaybe>>; - relatedToTags?: InputMaybe>>; - relatedToUsers?: InputMaybe>>; - search?: InputMaybe; - site?: InputMaybe>>; - siteId?: InputMaybe>>; - siteSettingsId?: InputMaybe>>; - slug?: InputMaybe>>; - title?: InputMaybe>>; - typeId?: InputMaybe>>; - uid?: InputMaybe>>; - unique?: InputMaybe; - uri?: InputMaybe>>; -}; - -export type ContentBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_text_BlockType'; +export type ContentBlocks_Image_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_image_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ archived?: Maybe; + caption?: Maybe; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -5070,8 +5040,11 @@ export type ContentBlocks_Text_BlockType = ElementInterface & NeoBlockInterface fieldId?: Maybe; /** The ID of the entity */ id?: Maybe; + /** Canto Dam Asset field */ + image?: Maybe>>; /** The language of the site element is associated with. */ language?: Maybe; + layout?: Maybe; /** The Neo block’s level. */ level?: Maybe; /** The ID of the primary owner of the Neo block. */ @@ -5090,7 +5063,6 @@ export type ContentBlocks_Text_BlockType = ElementInterface & NeoBlockInterface sortOrder?: Maybe; /** The element’s status. */ status?: Maybe; - text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ @@ -5106,18 +5078,43 @@ export type ContentBlocks_Text_BlockType = ElementInterface & NeoBlockInterface }; -export type ContentBlocks_Text_BlockType_CountArgs = { +export type ContentBlocks_Image_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_TwoColumnContainer_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_twoColumnContainer_BlockType'; + +export type ContentBlocks_Image_BlockTypeImageArgs = { + except?: InputMaybe>>; + first?: InputMaybe; + forPage?: InputMaybe; + last?: InputMaybe; + nth?: InputMaybe; + random?: InputMaybe; + reverse?: InputMaybe; + shuffle?: InputMaybe; + skip?: InputMaybe; + sortBy?: InputMaybe>>; + sortByDesc?: InputMaybe>>; + where?: InputMaybe; + whereBetween?: InputMaybe; + whereIn?: InputMaybe; + whereNotBetween?: InputMaybe; + whereNotIn?: InputMaybe; + whereNotNull?: InputMaybe; + whereNull?: InputMaybe; +}; + + +export type ContentBlocks_Image_BlockTypeLayoutArgs = { + label?: InputMaybe; +}; + +export type ContentBlocks_QuestionBlock_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_questionBlock_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ archived?: Maybe; - /** The child block types for this Neo block */ - children?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -5134,6 +5131,7 @@ export type ContentBlocks_TwoColumnContainer_BlockType = ElementInterface & NeoB level?: Maybe; /** The ID of the primary owner of the Neo block. */ primaryOwnerId?: Maybe; + questionEntries: Array>; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -5163,12 +5161,79 @@ export type ContentBlocks_TwoColumnContainer_BlockType = ElementInterface & NeoB }; -export type ContentBlocks_TwoColumnContainer_BlockType_CountArgs = { +export type ContentBlocks_QuestionBlock_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type DisplayTable_BlockType = ElementInterface & SuperTableBlockInterface & { - __typename?: 'displayTable_BlockType'; + +export type ContentBlocks_QuestionBlock_BlockTypeQuestionEntriesArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + +export type ContentBlocks_ReferenceModalBlock_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_referenceModalBlock_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ @@ -5179,14 +5244,17 @@ export type DisplayTable_BlockType = ElementInterface & SuperTableBlockInterface dateUpdated?: Maybe; /** Whether the element is enabled. */ enabled?: Maybe; - /** The ID of the field that owns the Super Table block. */ - fieldId: Scalars['Int']['output']; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; /** The ID of the entity */ id?: Maybe; /** The language of the site element is associated with. */ language?: Maybe; - /** The ID of the primary owner of the Super Table block. */ - primaryOwnerId: Scalars['Int']['output']; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + referenceModalEntries: Array>; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -5197,17 +5265,18 @@ export type DisplayTable_BlockType = ElementInterface & SuperTableBlockInterface siteSettingsId?: Maybe; /** The element’s slug. */ slug?: Maybe; - /** The sort order of the Super Table block within the owner element field. */ + /** The sort order of the Neo block within the owner element field. */ sortOrder?: Maybe; /** The element’s status. */ status?: Maybe; - tableRow: Array>; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ trashed?: Maybe; - /** The ID of the Super Table block‘s type. */ - typeId: Scalars['Int']['output']; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; /** The UID of the entity */ uid?: Maybe; /** The element’s URI. */ @@ -5215,23 +5284,1211 @@ export type DisplayTable_BlockType = ElementInterface & SuperTableBlockInterface }; -export type DisplayTable_BlockType_CountArgs = { +export type ContentBlocks_ReferenceModalBlock_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type ContentBlocks_ReferenceModalBlock_BlockTypeReferenceModalEntriesArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + +export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_scatterplotTool_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + scatterplotItems: Array>; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + text?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; + xAxisLabel?: Maybe; + xAxisMin?: Maybe; + yAxisLabel?: Maybe; + yAxisMax?: Maybe; +}; + + +export type ContentBlocks_ScatterplotTool_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type ContentBlocks_ScatterplotTool_BlockTypeScatterplotItemsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_table_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + caption?: Maybe; + contentHeading?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + displayTable: Array>; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type ContentBlocks_Table_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type DisplayTable_BlockTypeTableRowArgs = { +export type ContentBlocks_Table_BlockTypeDisplayTableArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type ContentBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_text_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + text?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type ContentBlocks_Text_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + +export type ContentBlocks_TwoColumnContainer_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_twoColumnContainer_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The child block types for this Neo block */ + children?: Maybe>>; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type ContentBlocks_TwoColumnContainer_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + +export type DisplayTable_BlockType = ElementInterface & SuperTableBlockInterface & { + __typename?: 'displayTable_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Super Table block. */ + fieldId: Scalars['Int']['output']; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The ID of the primary owner of the Super Table block. */ + primaryOwnerId: Scalars['Int']['output']; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Super Table block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + tableRow: Array>; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The ID of the Super Table block‘s type. */ + typeId: Scalars['Int']['output']; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type DisplayTable_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type DisplayTable_BlockTypeTableRowArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type DisplayTable_SuperTableField = DisplayTable_BlockType; + +export type FiltersImages_FilterImage_BlockType = ElementInterface & MatrixBlockInterface & { + __typename?: 'filtersImages_filterImage_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + defaultValue?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the matrix block. */ + fieldId: Scalars['Int']['output']; + filter?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** Canto Dam Asset field */ + image?: Maybe>>; + /** The language of the site element is associated with. */ + language?: Maybe; + max?: Maybe; + min?: Maybe; + /** The ID of the primary owner of the Matrix block. */ + primaryOwnerId: Scalars['Int']['output']; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the matrix block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the matrix block’s type. */ + typeHandle: Scalars['String']['output']; + /** The ID of the matrix block’s type. */ + typeId: Scalars['Int']['output']; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type FiltersImages_FilterImage_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type FiltersImages_FilterImage_BlockTypeFilterArgs = { + label?: InputMaybe; +}; + + +export type FiltersImages_FilterImage_BlockTypeImageArgs = { + except?: InputMaybe>>; + first?: InputMaybe; + forPage?: InputMaybe; + last?: InputMaybe; + nth?: InputMaybe; + random?: InputMaybe; + reverse?: InputMaybe; + shuffle?: InputMaybe; + skip?: InputMaybe; + sortBy?: InputMaybe>>; + sortByDesc?: InputMaybe>>; + where?: InputMaybe; + whereBetween?: InputMaybe; + whereIn?: InputMaybe; + whereNotBetween?: InputMaybe; + whereNotIn?: InputMaybe; + whereNotNull?: InputMaybe; + whereNull?: InputMaybe; +}; + +export type GraphBars_MatrixField = GraphBars_Bar_BlockType; + +export type GraphBars_Bar_BlockType = ElementInterface & MatrixBlockInterface & { + __typename?: 'graphBars_bar_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the matrix block. */ + fieldId: Scalars['Int']['output']; + /** The ID of the entity */ + id?: Maybe; + label?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The ID of the primary owner of the Matrix block. */ + primaryOwnerId: Scalars['Int']['output']; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the matrix block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the matrix block’s type. */ + typeHandle: Scalars['String']['output']; + /** The ID of the matrix block’s type. */ + typeId: Scalars['Int']['output']; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; + yValue?: Maybe; +}; + + +export type GraphBars_Bar_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + +export type HomepageSectionEntryUnion = Homepage_Homepage_Entry; + +export type Homepage_Homepage_Entry = ElementInterface & EntryInterface & { + __typename?: 'homepage_homepage_Entry'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ + ancestors: Array; + /** Whether the element is archived. */ + archived?: Maybe; + /** The entry’s author. */ + author?: Maybe; + /** The ID of the author of this entry. */ + authorId?: Maybe; + /** Returns the entry’s canonical ID. */ + canonicalId?: Maybe; + /** Returns the entry’s canonical UUID. */ + canonicalUid?: Maybe; + /** The entry’s children, if the section is a structure. Accepts the same arguments as the `entries` query. */ + children: Array; + contentBlocks?: Maybe>>; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** The entry’s descendants, if the section is a structure. Accepts the same arguments as the `entries` query. */ + descendants: Array; + description?: Maybe; + /** The draft ID (from the `drafts` table). */ + draftId?: Maybe; + /** The name of the draft. */ + draftName?: Maybe; + /** The notes for the draft. */ + draftNotes?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** Whether the element is enabled for the site. */ + enabledForSite?: Maybe; + /** The expiry date of the entry. */ + expiryDate?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** Returns whether this is a draft. */ + isDraft?: Maybe; + /** Returns whether this is a revision. */ + isRevision?: Maybe; + /** Returns whether this is an unpublished draft. */ + isUnpublishedDraft?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The element’s level within its structure */ + level?: Maybe; + /** The element’s left position within its structure. */ + lft?: Maybe; + /** The same element in other locales. */ + localized: Array; + /** Returns the next element relative to this one, from a given set of criteria. */ + next?: Maybe; + pageType?: Maybe; + /** The entry’s parent, if the section is a structure. */ + parent?: Maybe; + /** The entry’s post date. */ + postDate?: Maybe; + /** Returns the previous element relative to this one, from a given set of criteria. */ + prev?: Maybe; + /** The revision ID (from the `revisions` table). */ + revisionId?: Maybe; + /** The revision notes (from the `revisions` table). */ + revisionNotes?: Maybe; + /** The element’s right position within its structure. */ + rgt?: Maybe; + /** The element’s structure’s root ID */ + root?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the section that contains the entry. */ + sectionHandle: Scalars['String']['output']; + /** The ID of the section that contains the entry. */ + sectionId: Scalars['Int']['output']; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** + * Returns the entry’s canonical ID. + * @deprecated this field has been deprecated since Craft 3.7.7. Use `canonicalId` instead. + */ + sourceId?: Maybe; + /** + * Returns the entry’s canonical UUID. + * @deprecated this field has been deprecated since Craft 3.7.7. Use `canonicalUid` instead. + */ + sourceUid?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s structure ID. */ + structureId?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the entry type that contains the entry. */ + typeHandle: Scalars['String']['output']; + /** The ID of the entry type that contains the entry. */ + typeId: Scalars['Int']['output']; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; + /** The element’s full URL */ + url?: Maybe; +}; + + +export type Homepage_Homepage_Entry_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type Homepage_Homepage_EntryAncestorsArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Homepage_Homepage_EntryChildrenArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Homepage_Homepage_EntryContentBlocksArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + + +export type Homepage_Homepage_EntryDescendantsArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Homepage_Homepage_EntryLocalizedArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Homepage_Homepage_EntryNextArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Homepage_Homepage_EntryPageTypeArgs = { + label?: InputMaybe; +}; + + +export type Homepage_Homepage_EntryParentArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Homepage_Homepage_EntryPrevArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5241,22 +6498,26 @@ export type DisplayTable_BlockTypeTableRowArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; }; -export type DisplayTable_SuperTableField = DisplayTable_BlockType; - -export type FiltersImages_FilterImage_BlockType = ElementInterface & MatrixBlockInterface & { - __typename?: 'filtersImages_filterImage_BlockType'; +export type Images_ImageGroup_BlockType = ElementInterface & MatrixBlockInterface & { + __typename?: 'images_imageGroup_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ @@ -5265,20 +6526,16 @@ export type FiltersImages_FilterImage_BlockType = ElementInterface & MatrixBlock dateCreated?: Maybe; /** The date the element was last updated. */ dateUpdated?: Maybe; - defaultValue?: Maybe; /** Whether the element is enabled. */ enabled?: Maybe; /** The ID of the field that owns the matrix block. */ fieldId: Scalars['Int']['output']; - filter?: Maybe; + groupName?: Maybe; /** The ID of the entity */ id?: Maybe; - /** Canto Dam Asset field */ - image?: Maybe>>; + images: Array>; /** The language of the site element is associated with. */ language?: Maybe; - max?: Maybe; - min?: Maybe; /** The ID of the primary owner of the Matrix block. */ primaryOwnerId: Scalars['Int']['output']; /** The element’s search score, if the `search` parameter was used when querying for the element. */ @@ -5310,98 +6567,59 @@ export type FiltersImages_FilterImage_BlockType = ElementInterface & MatrixBlock }; -export type FiltersImages_FilterImage_BlockType_CountArgs = { +export type Images_ImageGroup_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type FiltersImages_FilterImage_BlockTypeFilterArgs = { - label?: InputMaybe; -}; - - -export type FiltersImages_FilterImage_BlockTypeImageArgs = { - except?: InputMaybe>>; - first?: InputMaybe; - forPage?: InputMaybe; - last?: InputMaybe; - nth?: InputMaybe; - random?: InputMaybe; - reverse?: InputMaybe; - shuffle?: InputMaybe; - skip?: InputMaybe; - sortBy?: InputMaybe>>; - sortByDesc?: InputMaybe>>; - where?: InputMaybe; - whereBetween?: InputMaybe; - whereIn?: InputMaybe; - whereNotBetween?: InputMaybe; - whereNotIn?: InputMaybe; - whereNotNull?: InputMaybe; - whereNull?: InputMaybe; -}; - -export type GraphBars_MatrixField = GraphBars_Bar_BlockType; - -export type GraphBars_Bar_BlockType = ElementInterface & MatrixBlockInterface & { - __typename?: 'graphBars_bar_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the matrix block. */ - fieldId: Scalars['Int']['output']; - /** The ID of the entity */ - id?: Maybe; - label?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The ID of the primary owner of the Matrix block. */ - primaryOwnerId: Scalars['Int']['output']; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the matrix block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the matrix block’s type. */ - typeHandle: Scalars['String']['output']; - /** The ID of the matrix block’s type. */ - typeId: Scalars['Int']['output']; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; - yValue?: Maybe; -}; - - -export type GraphBars_Bar_BlockType_CountArgs = { - field: Scalars['String']['input']; +export type Images_ImageGroup_BlockTypeImagesArgs = { + availableFilters?: InputMaybe>>; + dateCreated?: InputMaybe>>; + dateModified?: InputMaybe; + dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; + filename?: InputMaybe>>; + fixedOrder?: InputMaybe; + folderId?: InputMaybe>>; + hasAlt?: InputMaybe; + height?: InputMaybe>>; + id?: InputMaybe>>; + inReverse?: InputMaybe; + includeSubfolders?: InputMaybe; + kind?: InputMaybe>>; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + size?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uploader?: InputMaybe; + uri?: InputMaybe>>; + volume?: InputMaybe>>; + volumeId?: InputMaybe>>; + width?: InputMaybe>>; + withTransforms?: InputMaybe>>; }; -export type HomepageSectionEntryUnion = Homepage_Homepage_Entry; +export type InvestigationsSectionEntryUnion = Investigations_Default_Entry | Investigations_InvestigationParent_Entry | Investigations_InvestigationSectionBreakChild_Entry; -export type Homepage_Homepage_Entry = ElementInterface & EntryInterface & { - __typename?: 'homepage_homepage_Entry'; +export type Investigations_Default_Entry = ElementInterface & EntryInterface & { + __typename?: 'investigations_default_Entry'; /** Return a number of related elements for a field. */ _count?: Maybe; /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ @@ -5425,7 +6643,6 @@ export type Homepage_Homepage_Entry = ElementInterface & EntryInterface & { dateUpdated?: Maybe; /** The entry’s descendants, if the section is a structure. Accepts the same arguments as the `entries` query. */ descendants: Array; - description?: Maybe; /** The draft ID (from the `drafts` table). */ draftId?: Maybe; /** The name of the draft. */ @@ -5438,6 +6655,7 @@ export type Homepage_Homepage_Entry = ElementInterface & EntryInterface & { enabledForSite?: Maybe; /** The expiry date of the entry. */ expiryDate?: Maybe; + hasSavePoint?: Maybe; /** The ID of the entity */ id?: Maybe; /** Returns whether this is a draft. */ @@ -5456,7 +6674,6 @@ export type Homepage_Homepage_Entry = ElementInterface & EntryInterface & { localized: Array; /** Returns the next element relative to this one, from a given set of criteria. */ next?: Maybe; - pageType?: Maybe; /** The entry’s parent, if the section is a structure. */ parent?: Maybe; /** The entry’s post date. */ @@ -5516,12 +6733,12 @@ export type Homepage_Homepage_Entry = ElementInterface & EntryInterface & { }; -export type Homepage_Homepage_Entry_CountArgs = { +export type Investigations_Default_Entry_CountArgs = { field: Scalars['String']['input']; }; -export type Homepage_Homepage_EntryAncestorsArgs = { +export type Investigations_Default_EntryAncestorsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -5588,7 +6805,7 @@ export type Homepage_Homepage_EntryAncestorsArgs = { }; -export type Homepage_Homepage_EntryChildrenArgs = { +export type Investigations_Default_EntryChildrenArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -5655,7 +6872,7 @@ export type Homepage_Homepage_EntryChildrenArgs = { }; -export type Homepage_Homepage_EntryContentBlocksArgs = { +export type Investigations_Default_EntryContentBlocksArgs = { dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; fieldId?: InputMaybe>>; @@ -5690,7 +6907,7 @@ export type Homepage_Homepage_EntryContentBlocksArgs = { }; -export type Homepage_Homepage_EntryDescendantsArgs = { +export type Investigations_Default_EntryDescendantsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -5757,7 +6974,7 @@ export type Homepage_Homepage_EntryDescendantsArgs = { }; -export type Homepage_Homepage_EntryLocalizedArgs = { +export type Investigations_Default_EntryLocalizedArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -5824,7 +7041,7 @@ export type Homepage_Homepage_EntryLocalizedArgs = { }; -export type Homepage_Homepage_EntryNextArgs = { +export type Investigations_Default_EntryNextArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -5886,17 +7103,12 @@ export type Homepage_Homepage_EntryNextArgs = { uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; - widgetInstructions?: InputMaybe>>; - withStructure?: InputMaybe; -}; - - -export type Homepage_Homepage_EntryPageTypeArgs = { - label?: InputMaybe; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; }; -export type Homepage_Homepage_EntryParentArgs = { +export type Investigations_Default_EntryParentArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -5963,7 +7175,7 @@ export type Homepage_Homepage_EntryParentArgs = { }; -export type Homepage_Homepage_EntryPrevArgs = { +export type Investigations_Default_EntryPrevArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -6029,108 +7241,8 @@ export type Homepage_Homepage_EntryPrevArgs = { withStructure?: InputMaybe; }; -export type Images_ImageGroup_BlockType = ElementInterface & MatrixBlockInterface & { - __typename?: 'images_imageGroup_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the matrix block. */ - fieldId: Scalars['Int']['output']; - groupName?: Maybe; - /** The ID of the entity */ - id?: Maybe; - images: Array>; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The ID of the primary owner of the Matrix block. */ - primaryOwnerId: Scalars['Int']['output']; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the matrix block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the matrix block’s type. */ - typeHandle: Scalars['String']['output']; - /** The ID of the matrix block’s type. */ - typeId: Scalars['Int']['output']; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; -}; - - -export type Images_ImageGroup_BlockType_CountArgs = { - field: Scalars['String']['input']; -}; - - -export type Images_ImageGroup_BlockTypeImagesArgs = { - dateCreated?: InputMaybe>>; - dateModified?: InputMaybe; - dateUpdated?: InputMaybe>>; - filename?: InputMaybe>>; - fixedOrder?: InputMaybe; - folderId?: InputMaybe>>; - hasAlt?: InputMaybe; - height?: InputMaybe>>; - id?: InputMaybe>>; - inReverse?: InputMaybe; - includeSubfolders?: InputMaybe; - kind?: InputMaybe>>; - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe; - preferSites?: InputMaybe>>; - ref?: InputMaybe>>; - relatedTo?: InputMaybe>>; - relatedToAll?: InputMaybe>>; - relatedToAssets?: InputMaybe>>; - relatedToCategories?: InputMaybe>>; - relatedToEntries?: InputMaybe>>; - relatedToTags?: InputMaybe>>; - relatedToUsers?: InputMaybe>>; - search?: InputMaybe; - site?: InputMaybe>>; - siteId?: InputMaybe>>; - siteSettingsId?: InputMaybe>>; - size?: InputMaybe>>; - slug?: InputMaybe>>; - title?: InputMaybe>>; - uid?: InputMaybe>>; - unique?: InputMaybe; - uploader?: InputMaybe; - uri?: InputMaybe>>; - volume?: InputMaybe>>; - volumeId?: InputMaybe>>; - width?: InputMaybe>>; - withTransforms?: InputMaybe>>; -}; - -export type InvestigationsSectionEntryUnion = Investigations_Default_Entry | Investigations_InvestigationParent_Entry | Investigations_InvestigationSectionBreakChild_Entry; - -export type Investigations_Default_Entry = ElementInterface & EntryInterface & { - __typename?: 'investigations_default_Entry'; +export type Investigations_InvestigationParent_Entry = ElementInterface & EntryInterface & { + __typename?: 'investigations_investigationParent_Entry'; /** Return a number of related elements for a field. */ _count?: Maybe; /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ @@ -6147,7 +7259,6 @@ export type Investigations_Default_Entry = ElementInterface & EntryInterface & { canonicalUid?: Maybe; /** The entry’s children, if the section is a structure. Accepts the same arguments as the `entries` query. */ children: Array; - contentBlocks?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -6166,9 +7277,10 @@ export type Investigations_Default_Entry = ElementInterface & EntryInterface & { enabledForSite?: Maybe; /** The expiry date of the entry. */ expiryDate?: Maybe; - hasSavePoint?: Maybe; /** The ID of the entity */ id?: Maybe; + /** Canto Dam Asset field */ + image?: Maybe>>; /** Returns whether this is a draft. */ isDraft?: Maybe; /** Returns whether this is a revision. */ @@ -6244,12 +7356,12 @@ export type Investigations_Default_Entry = ElementInterface & EntryInterface & { }; -export type Investigations_Default_Entry_CountArgs = { +export type Investigations_InvestigationParent_Entry_CountArgs = { field: Scalars['String']['input']; }; -export type Investigations_Default_EntryAncestorsArgs = { +export type Investigations_InvestigationParent_EntryAncestorsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -6316,7 +7428,7 @@ export type Investigations_Default_EntryAncestorsArgs = { }; -export type Investigations_Default_EntryChildrenArgs = { +export type Investigations_InvestigationParent_EntryChildrenArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -6383,42 +7495,7 @@ export type Investigations_Default_EntryChildrenArgs = { }; -export type Investigations_Default_EntryContentBlocksArgs = { - dateCreated?: InputMaybe>>; - dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; - fixedOrder?: InputMaybe; - id?: InputMaybe>>; - inReverse?: InputMaybe; - level?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe; - preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; - ref?: InputMaybe>>; - relatedTo?: InputMaybe>>; - relatedToAll?: InputMaybe>>; - relatedToAssets?: InputMaybe>>; - relatedToCategories?: InputMaybe>>; - relatedToEntries?: InputMaybe>>; - relatedToTags?: InputMaybe>>; - relatedToUsers?: InputMaybe>>; - search?: InputMaybe; - site?: InputMaybe>>; - siteId?: InputMaybe>>; - siteSettingsId?: InputMaybe>>; - slug?: InputMaybe>>; - title?: InputMaybe>>; - type?: InputMaybe>>; - typeId?: InputMaybe>>; - uid?: InputMaybe>>; - unique?: InputMaybe; - uri?: InputMaybe>>; -}; - - -export type Investigations_Default_EntryDescendantsArgs = { +export type Investigations_InvestigationParent_EntryDescendantsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -6485,7 +7562,29 @@ export type Investigations_Default_EntryDescendantsArgs = { }; -export type Investigations_Default_EntryLocalizedArgs = { +export type Investigations_InvestigationParent_EntryImageArgs = { + except?: InputMaybe>>; + first?: InputMaybe; + forPage?: InputMaybe; + last?: InputMaybe; + nth?: InputMaybe; + random?: InputMaybe; + reverse?: InputMaybe; + shuffle?: InputMaybe; + skip?: InputMaybe; + sortBy?: InputMaybe>>; + sortByDesc?: InputMaybe>>; + where?: InputMaybe; + whereBetween?: InputMaybe; + whereIn?: InputMaybe; + whereNotBetween?: InputMaybe; + whereNotIn?: InputMaybe; + whereNotNull?: InputMaybe; + whereNull?: InputMaybe; +}; + + +export type Investigations_InvestigationParent_EntryLocalizedArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -6552,7 +7651,7 @@ export type Investigations_Default_EntryLocalizedArgs = { }; -export type Investigations_Default_EntryNextArgs = { +export type Investigations_InvestigationParent_EntryNextArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -6619,7 +7718,7 @@ export type Investigations_Default_EntryNextArgs = { }; -export type Investigations_Default_EntryParentArgs = { +export type Investigations_InvestigationParent_EntryParentArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -6686,7 +7785,7 @@ export type Investigations_Default_EntryParentArgs = { }; -export type Investigations_Default_EntryPrevArgs = { +export type Investigations_InvestigationParent_EntryPrevArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -6752,8 +7851,8 @@ export type Investigations_Default_EntryPrevArgs = { withStructure?: InputMaybe; }; -export type Investigations_InvestigationParent_Entry = ElementInterface & EntryInterface & { - __typename?: 'investigations_investigationParent_Entry'; +export type Investigations_InvestigationSectionBreakChild_Entry = ElementInterface & EntryInterface & { + __typename?: 'investigations_investigationSectionBreakChild_Entry'; /** Return a number of related elements for a field. */ _count?: Maybe; /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ @@ -6790,8 +7889,6 @@ export type Investigations_InvestigationParent_Entry = ElementInterface & EntryI expiryDate?: Maybe; /** The ID of the entity */ id?: Maybe; - /** Canto Dam Asset field */ - image?: Maybe>>; /** Returns whether this is a draft. */ isDraft?: Maybe; /** Returns whether this is a revision. */ @@ -6850,6 +7947,7 @@ export type Investigations_InvestigationParent_Entry = ElementInterface & EntryI status?: Maybe; /** The element’s structure ID. */ structureId?: Maybe; + text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ @@ -6867,12 +7965,79 @@ export type Investigations_InvestigationParent_Entry = ElementInterface & EntryI }; -export type Investigations_InvestigationParent_Entry_CountArgs = { +export type Investigations_InvestigationSectionBreakChild_Entry_CountArgs = { field: Scalars['String']['input']; }; -export type Investigations_InvestigationParent_EntryAncestorsArgs = { +export type Investigations_InvestigationSectionBreakChild_EntryAncestorsArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Investigations_InvestigationSectionBreakChild_EntryChildrenArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -6939,7 +8104,7 @@ export type Investigations_InvestigationParent_EntryAncestorsArgs = { }; -export type Investigations_InvestigationParent_EntryChildrenArgs = { +export type Investigations_InvestigationSectionBreakChild_EntryDescendantsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -7006,7 +8171,7 @@ export type Investigations_InvestigationParent_EntryChildrenArgs = { }; -export type Investigations_InvestigationParent_EntryDescendantsArgs = { +export type Investigations_InvestigationSectionBreakChild_EntryLocalizedArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -7073,29 +8238,7 @@ export type Investigations_InvestigationParent_EntryDescendantsArgs = { }; -export type Investigations_InvestigationParent_EntryImageArgs = { - except?: InputMaybe>>; - first?: InputMaybe; - forPage?: InputMaybe; - last?: InputMaybe; - nth?: InputMaybe; - random?: InputMaybe; - reverse?: InputMaybe; - shuffle?: InputMaybe; - skip?: InputMaybe; - sortBy?: InputMaybe>>; - sortByDesc?: InputMaybe>>; - where?: InputMaybe; - whereBetween?: InputMaybe; - whereIn?: InputMaybe; - whereNotBetween?: InputMaybe; - whereNotIn?: InputMaybe; - whereNotNull?: InputMaybe; - whereNull?: InputMaybe; -}; - - -export type Investigations_InvestigationParent_EntryLocalizedArgs = { +export type Investigations_InvestigationSectionBreakChild_EntryNextArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -7162,7 +8305,7 @@ export type Investigations_InvestigationParent_EntryLocalizedArgs = { }; -export type Investigations_InvestigationParent_EntryNextArgs = { +export type Investigations_InvestigationSectionBreakChild_EntryParentArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -7229,7 +8372,7 @@ export type Investigations_InvestigationParent_EntryNextArgs = { }; -export type Investigations_InvestigationParent_EntryParentArgs = { +export type Investigations_InvestigationSectionBreakChild_EntryPrevArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -7295,46 +8438,236 @@ export type Investigations_InvestigationParent_EntryParentArgs = { withStructure?: InputMaybe; }; +/** This is the interface implemented by all links. */ +export type LinkField_Link = { + __typename?: 'linkField_Link'; + ariaLabel?: Maybe; + customText?: Maybe; + element?: Maybe; + target?: Maybe; + text?: Maybe; + title?: Maybe; + type?: Maybe; + url?: Maybe; +}; + +export type MultiPartBlocks_NeoField = MultiPartBlocks_Multiselect_BlockType | MultiPartBlocks_ReadonlyText_BlockType | MultiPartBlocks_Select_BlockType | MultiPartBlocks_Text_BlockType; + +export type MultiPartBlocks_Multiselect_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_multiselect_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + answerOptions: Array>; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Multiselect_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type MultiPartBlocks_Multiselect_BlockTypeAnswerOptionsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type MultiPartBlocks_ReadonlyText_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_readonlyText_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + questionText?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_ReadonlyText_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + +export type MultiPartBlocks_Select_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_select_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + answerOptions: Array>; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Select_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + -export type Investigations_InvestigationParent_EntryPrevArgs = { - after?: InputMaybe; - ancestorDist?: InputMaybe; - ancestorOf?: InputMaybe; - answerType?: InputMaybe>>; - authorGroup?: InputMaybe>>; - authorGroupId?: InputMaybe>>; - authorId?: InputMaybe>>; - before?: InputMaybe; +export type MultiPartBlocks_Select_BlockTypeAnswerOptionsArgs = { dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; - descendantDist?: InputMaybe; - descendantOf?: InputMaybe; - description?: InputMaybe>>; - editable?: InputMaybe; - expiryDate?: InputMaybe>>; - filterColorOptions?: InputMaybe>>; + fieldId?: InputMaybe>>; fixedOrder?: InputMaybe; - hasDescendants?: InputMaybe; - hasSavePoint?: InputMaybe; - hideTitle?: InputMaybe; id?: InputMaybe>>; - image?: InputMaybe>>; inReverse?: InputMaybe; - leaves?: InputMaybe; - level?: InputMaybe; limit?: InputMaybe; - linkTo?: InputMaybe>>; - nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; - pageType?: InputMaybe>>; - positionedAfter?: InputMaybe; - positionedBefore?: InputMaybe; - postDate?: InputMaybe>>; preferSites?: InputMaybe>>; - prevSiblingOf?: InputMaybe; - questionText?: InputMaybe>>; - readOnly?: InputMaybe; + primaryOwnerId?: InputMaybe>>; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7344,26 +8677,138 @@ export type Investigations_InvestigationParent_EntryPrevArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; - section?: InputMaybe>>; - sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; - structureId?: InputMaybe; - text?: InputMaybe>>; title?: InputMaybe>>; type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; - widgetInstructions?: InputMaybe>>; - withStructure?: InputMaybe; }; -export type Investigations_InvestigationSectionBreakChild_Entry = ElementInterface & EntryInterface & { - __typename?: 'investigations_investigationSectionBreakChild_Entry'; +export type MultiPartBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_text_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Text_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + +export type Objects_Object_BlockType = ElementInterface & MatrixBlockInterface & { + __typename?: 'objects_object_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the matrix block. */ + fieldId: Scalars['Int']['output']; + filterColorOptions?: Maybe>>; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + objectCaption?: Maybe; + objectName?: Maybe; + /** The ID of the primary owner of the Matrix block. */ + primaryOwnerId: Scalars['Int']['output']; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the matrix block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the matrix block’s type. */ + typeHandle: Scalars['String']['output']; + /** The ID of the matrix block’s type. */ + typeId: Scalars['Int']['output']; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type Objects_Object_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type Objects_Object_BlockTypeFilterColorOptionsArgs = { + label?: InputMaybe; +}; + +export type PagesSectionEntryUnion = Pages_Pages_Entry | Pages_RedirectPage_Entry; + +export type Pages_Pages_Entry = ElementInterface & EntryInterface & { + __typename?: 'pages_pages_Entry'; /** Return a number of related elements for a field. */ _count?: Maybe; /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ @@ -7380,6 +8825,7 @@ export type Investigations_InvestigationSectionBreakChild_Entry = ElementInterfa canonicalUid?: Maybe; /** The entry’s children, if the section is a structure. Accepts the same arguments as the `entries` query. */ children: Array; + contentBlocks?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -7398,6 +8844,7 @@ export type Investigations_InvestigationSectionBreakChild_Entry = ElementInterfa enabledForSite?: Maybe; /** The expiry date of the entry. */ expiryDate?: Maybe; + hideTitle?: Maybe; /** The ID of the entity */ id?: Maybe; /** Returns whether this is a draft. */ @@ -7416,6 +8863,7 @@ export type Investigations_InvestigationSectionBreakChild_Entry = ElementInterfa localized: Array; /** Returns the next element relative to this one, from a given set of criteria. */ next?: Maybe; + pageType?: Maybe; /** The entry’s parent, if the section is a structure. */ parent?: Maybe; /** The entry’s post date. */ @@ -7458,7 +8906,6 @@ export type Investigations_InvestigationSectionBreakChild_Entry = ElementInterfa status?: Maybe; /** The element’s structure ID. */ structureId?: Maybe; - text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ @@ -7476,79 +8923,12 @@ export type Investigations_InvestigationSectionBreakChild_Entry = ElementInterfa }; -export type Investigations_InvestigationSectionBreakChild_Entry_CountArgs = { +export type Pages_Pages_Entry_CountArgs = { field: Scalars['String']['input']; }; -export type Investigations_InvestigationSectionBreakChild_EntryAncestorsArgs = { - after?: InputMaybe; - ancestorDist?: InputMaybe; - ancestorOf?: InputMaybe; - answerType?: InputMaybe>>; - authorGroup?: InputMaybe>>; - authorGroupId?: InputMaybe>>; - authorId?: InputMaybe>>; - before?: InputMaybe; - dateCreated?: InputMaybe>>; - dateUpdated?: InputMaybe>>; - descendantDist?: InputMaybe; - descendantOf?: InputMaybe; - description?: InputMaybe>>; - editable?: InputMaybe; - expiryDate?: InputMaybe>>; - filterColorOptions?: InputMaybe>>; - fixedOrder?: InputMaybe; - hasDescendants?: InputMaybe; - hasSavePoint?: InputMaybe; - hideTitle?: InputMaybe; - id?: InputMaybe>>; - image?: InputMaybe>>; - inReverse?: InputMaybe; - leaves?: InputMaybe; - level?: InputMaybe; - limit?: InputMaybe; - linkTo?: InputMaybe>>; - nextSiblingOf?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe; - pageType?: InputMaybe>>; - positionedAfter?: InputMaybe; - positionedBefore?: InputMaybe; - postDate?: InputMaybe>>; - preferSites?: InputMaybe>>; - prevSiblingOf?: InputMaybe; - questionText?: InputMaybe>>; - readOnly?: InputMaybe; - ref?: InputMaybe>>; - relatedTo?: InputMaybe>>; - relatedToAll?: InputMaybe>>; - relatedToAssets?: InputMaybe>>; - relatedToCategories?: InputMaybe>>; - relatedToEntries?: InputMaybe>>; - relatedToTags?: InputMaybe>>; - relatedToUsers?: InputMaybe>>; - search?: InputMaybe; - section?: InputMaybe>>; - sectionId?: InputMaybe>>; - site?: InputMaybe>>; - siteId?: InputMaybe>>; - siteSettingsId?: InputMaybe>>; - slug?: InputMaybe>>; - structureId?: InputMaybe; - text?: InputMaybe>>; - title?: InputMaybe>>; - type?: InputMaybe>>; - typeId?: InputMaybe>>; - uid?: InputMaybe>>; - unique?: InputMaybe; - uri?: InputMaybe>>; - widgetInstructions?: InputMaybe>>; - withStructure?: InputMaybe; -}; - - -export type Investigations_InvestigationSectionBreakChild_EntryChildrenArgs = { +export type Pages_Pages_EntryAncestorsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -7615,7 +8995,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryChildrenArgs = { }; -export type Investigations_InvestigationSectionBreakChild_EntryDescendantsArgs = { +export type Pages_Pages_EntryChildrenArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -7682,45 +9062,19 @@ export type Investigations_InvestigationSectionBreakChild_EntryDescendantsArgs = }; -export type Investigations_InvestigationSectionBreakChild_EntryLocalizedArgs = { - after?: InputMaybe; - ancestorDist?: InputMaybe; - ancestorOf?: InputMaybe; - answerType?: InputMaybe>>; - authorGroup?: InputMaybe>>; - authorGroupId?: InputMaybe>>; - authorId?: InputMaybe>>; - before?: InputMaybe; +export type Pages_Pages_EntryContentBlocksArgs = { dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; - descendantDist?: InputMaybe; - descendantOf?: InputMaybe; - description?: InputMaybe>>; - editable?: InputMaybe; - expiryDate?: InputMaybe>>; - filterColorOptions?: InputMaybe>>; + fieldId?: InputMaybe>>; fixedOrder?: InputMaybe; - hasDescendants?: InputMaybe; - hasSavePoint?: InputMaybe; - hideTitle?: InputMaybe; id?: InputMaybe>>; - image?: InputMaybe>>; inReverse?: InputMaybe; - leaves?: InputMaybe; - level?: InputMaybe; + level?: InputMaybe; limit?: InputMaybe; - linkTo?: InputMaybe>>; - nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; - pageType?: InputMaybe>>; - positionedAfter?: InputMaybe; - positionedBefore?: InputMaybe; - postDate?: InputMaybe>>; preferSites?: InputMaybe>>; - prevSiblingOf?: InputMaybe; - questionText?: InputMaybe>>; - readOnly?: InputMaybe; + primaryOwnerId?: InputMaybe>>; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7730,26 +9084,20 @@ export type Investigations_InvestigationSectionBreakChild_EntryLocalizedArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; - section?: InputMaybe>>; - sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; - structureId?: InputMaybe; - text?: InputMaybe>>; title?: InputMaybe>>; type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; - widgetInstructions?: InputMaybe>>; - withStructure?: InputMaybe; }; -export type Investigations_InvestigationSectionBreakChild_EntryNextArgs = { +export type Pages_Pages_EntryDescendantsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -7816,7 +9164,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryNextArgs = { }; -export type Investigations_InvestigationSectionBreakChild_EntryParentArgs = { +export type Pages_Pages_EntryLocalizedArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -7883,7 +9231,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryParentArgs = { }; -export type Investigations_InvestigationSectionBreakChild_EntryPrevArgs = { +export type Pages_Pages_EntryNextArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -7949,236 +9297,51 @@ export type Investigations_InvestigationSectionBreakChild_EntryPrevArgs = { withStructure?: InputMaybe; }; -/** This is the interface implemented by all links. */ -export type LinkField_Link = { - __typename?: 'linkField_Link'; - ariaLabel?: Maybe; - customText?: Maybe; - element?: Maybe; - target?: Maybe; - text?: Maybe; - title?: Maybe; - type?: Maybe; - url?: Maybe; -}; - -export type MultiPartBlocks_NeoField = MultiPartBlocks_Multiselect_BlockType | MultiPartBlocks_ReadonlyText_BlockType | MultiPartBlocks_Select_BlockType | MultiPartBlocks_Text_BlockType; - -export type MultiPartBlocks_Multiselect_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'multiPartBlocks_multiselect_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - answerOptions: Array>; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; -}; - - -export type MultiPartBlocks_Multiselect_BlockType_CountArgs = { - field: Scalars['String']['input']; -}; - - -export type MultiPartBlocks_Multiselect_BlockTypeAnswerOptionsArgs = { - dateCreated?: InputMaybe>>; - dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; - fixedOrder?: InputMaybe; - id?: InputMaybe>>; - inReverse?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe; - preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; - ref?: InputMaybe>>; - relatedTo?: InputMaybe>>; - relatedToAll?: InputMaybe>>; - relatedToAssets?: InputMaybe>>; - relatedToCategories?: InputMaybe>>; - relatedToEntries?: InputMaybe>>; - relatedToTags?: InputMaybe>>; - relatedToUsers?: InputMaybe>>; - search?: InputMaybe; - site?: InputMaybe>>; - siteId?: InputMaybe>>; - siteSettingsId?: InputMaybe>>; - slug?: InputMaybe>>; - title?: InputMaybe>>; - type?: InputMaybe>>; - typeId?: InputMaybe>>; - uid?: InputMaybe>>; - unique?: InputMaybe; - uri?: InputMaybe>>; -}; - -export type MultiPartBlocks_ReadonlyText_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'multiPartBlocks_readonlyText_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; - questionText?: Maybe; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; -}; - - -export type MultiPartBlocks_ReadonlyText_BlockType_CountArgs = { - field: Scalars['String']['input']; -}; - -export type MultiPartBlocks_Select_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'multiPartBlocks_select_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - answerOptions: Array>; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; -}; - -export type MultiPartBlocks_Select_BlockType_CountArgs = { - field: Scalars['String']['input']; +export type Pages_Pages_EntryPageTypeArgs = { + label?: InputMaybe; }; -export type MultiPartBlocks_Select_BlockTypeAnswerOptionsArgs = { +export type Pages_Pages_EntryParentArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8188,138 +9351,93 @@ export type MultiPartBlocks_Select_BlockTypeAnswerOptionsArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; -}; - -export type MultiPartBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'multiPartBlocks_text_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; -}; - - -export type MultiPartBlocks_Text_BlockType_CountArgs = { - field: Scalars['String']['input']; -}; - -export type Objects_Object_BlockType = ElementInterface & MatrixBlockInterface & { - __typename?: 'objects_object_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the matrix block. */ - fieldId: Scalars['Int']['output']; - filterColorOptions?: Maybe>>; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - objectCaption?: Maybe; - objectName?: Maybe; - /** The ID of the primary owner of the Matrix block. */ - primaryOwnerId: Scalars['Int']['output']; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the matrix block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the matrix block’s type. */ - typeHandle: Scalars['String']['output']; - /** The ID of the matrix block’s type. */ - typeId: Scalars['Int']['output']; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; -}; - - -export type Objects_Object_BlockType_CountArgs = { - field: Scalars['String']['input']; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; }; -export type Objects_Object_BlockTypeFilterColorOptionsArgs = { - label?: InputMaybe; +export type Pages_Pages_EntryPrevArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; }; -export type PagesSectionEntryUnion = Pages_Pages_Entry | Pages_RedirectPage_Entry; - -export type Pages_Pages_Entry = ElementInterface & EntryInterface & { - __typename?: 'pages_pages_Entry'; +export type Pages_RedirectPage_Entry = ElementInterface & EntryInterface & { + __typename?: 'pages_redirectPage_Entry'; /** Return a number of related elements for a field. */ _count?: Maybe; /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ @@ -8336,7 +9454,6 @@ export type Pages_Pages_Entry = ElementInterface & EntryInterface & { canonicalUid?: Maybe; /** The entry’s children, if the section is a structure. Accepts the same arguments as the `entries` query. */ children: Array; - contentBlocks?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -8370,11 +9487,11 @@ export type Pages_Pages_Entry = ElementInterface & EntryInterface & { level?: Maybe; /** The element’s left position within its structure. */ lft?: Maybe; + linkTo?: Maybe; /** The same element in other locales. */ localized: Array; /** Returns the next element relative to this one, from a given set of criteria. */ next?: Maybe; - pageType?: Maybe; /** The entry’s parent, if the section is a structure. */ parent?: Maybe; /** The entry’s post date. */ @@ -8434,12 +9551,12 @@ export type Pages_Pages_Entry = ElementInterface & EntryInterface & { }; -export type Pages_Pages_Entry_CountArgs = { +export type Pages_RedirectPage_Entry_CountArgs = { field: Scalars['String']['input']; }; -export type Pages_Pages_EntryAncestorsArgs = { +export type Pages_RedirectPage_EntryAncestorsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -8506,7 +9623,7 @@ export type Pages_Pages_EntryAncestorsArgs = { }; -export type Pages_Pages_EntryChildrenArgs = { +export type Pages_RedirectPage_EntryChildrenArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -8573,19 +9690,45 @@ export type Pages_Pages_EntryChildrenArgs = { }; -export type Pages_Pages_EntryContentBlocksArgs = { +export type Pages_RedirectPage_EntryDescendantsArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; - level?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8595,20 +9738,26 @@ export type Pages_Pages_EntryContentBlocksArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; }; -export type Pages_Pages_EntryDescendantsArgs = { +export type Pages_RedirectPage_EntryLocalizedArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -8675,7 +9824,7 @@ export type Pages_Pages_EntryDescendantsArgs = { }; -export type Pages_Pages_EntryLocalizedArgs = { +export type Pages_RedirectPage_EntryNextArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -8742,7 +9891,7 @@ export type Pages_Pages_EntryLocalizedArgs = { }; -export type Pages_Pages_EntryNextArgs = { +export type Pages_RedirectPage_EntryParentArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -8809,12 +9958,7 @@ export type Pages_Pages_EntryNextArgs = { }; -export type Pages_Pages_EntryPageTypeArgs = { - label?: InputMaybe; -}; - - -export type Pages_Pages_EntryParentArgs = { +export type Pages_RedirectPage_EntryPrevArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -8880,8 +10024,66 @@ export type Pages_Pages_EntryParentArgs = { withStructure?: InputMaybe; }; +export type QuestionWidgetsBlock_NeoField = QuestionWidgetsBlock_ColorFilterToolBlock_BlockType; -export type Pages_Pages_EntryPrevArgs = { +export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + colorFilterTool: Array>; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockTypeColorFilterToolArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -8947,12 +10149,16 @@ export type Pages_Pages_EntryPrevArgs = { withStructure?: InputMaybe; }; -export type Pages_RedirectPage_Entry = ElementInterface & EntryInterface & { - __typename?: 'pages_redirectPage_Entry'; +export type QuestionsSectionEntryUnion = Questions_Default_Entry; + +export type Questions_Default_Entry = ElementInterface & EntryInterface & { + __typename?: 'questions_default_Entry'; /** Return a number of related elements for a field. */ _count?: Maybe; /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ ancestors: Array; + answerOptions: Array>; + answerType?: Maybe; /** Whether the element is archived. */ archived?: Maybe; /** The entry’s author. */ @@ -8983,7 +10189,6 @@ export type Pages_RedirectPage_Entry = ElementInterface & EntryInterface & { enabledForSite?: Maybe; /** The expiry date of the entry. */ expiryDate?: Maybe; - hideTitle?: Maybe; /** The ID of the entity */ id?: Maybe; /** Returns whether this is a draft. */ @@ -8998,9 +10203,9 @@ export type Pages_RedirectPage_Entry = ElementInterface & EntryInterface & { level?: Maybe; /** The element’s left position within its structure. */ lft?: Maybe; - linkTo?: Maybe; /** The same element in other locales. */ localized: Array; + multiPartBlocks?: Maybe>>; /** Returns the next element relative to this one, from a given set of criteria. */ next?: Maybe; /** The entry’s parent, if the section is a structure. */ @@ -9009,6 +10214,8 @@ export type Pages_RedirectPage_Entry = ElementInterface & EntryInterface & { postDate?: Maybe; /** Returns the previous element relative to this one, from a given set of criteria. */ prev?: Maybe; + questionText?: Maybe; + questionWidgetsBlock?: Maybe>>; /** The revision ID (from the `revisions` table). */ revisionId?: Maybe; /** The revision notes (from the `revisions` table). */ @@ -9059,15 +10266,16 @@ export type Pages_RedirectPage_Entry = ElementInterface & EntryInterface & { uri?: Maybe; /** The element’s full URL */ url?: Maybe; + widgetInstructions?: Maybe; }; -export type Pages_RedirectPage_Entry_CountArgs = { +export type Questions_Default_Entry_CountArgs = { field: Scalars['String']['input']; }; -export type Pages_RedirectPage_EntryAncestorsArgs = { +export type Questions_Default_EntryAncestorsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -9134,45 +10342,18 @@ export type Pages_RedirectPage_EntryAncestorsArgs = { }; -export type Pages_RedirectPage_EntryChildrenArgs = { - after?: InputMaybe; - ancestorDist?: InputMaybe; - ancestorOf?: InputMaybe; - answerType?: InputMaybe>>; - authorGroup?: InputMaybe>>; - authorGroupId?: InputMaybe>>; - authorId?: InputMaybe>>; - before?: InputMaybe; +export type Questions_Default_EntryAnswerOptionsArgs = { dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; - descendantDist?: InputMaybe; - descendantOf?: InputMaybe; - description?: InputMaybe>>; - editable?: InputMaybe; - expiryDate?: InputMaybe>>; - filterColorOptions?: InputMaybe>>; + fieldId?: InputMaybe>>; fixedOrder?: InputMaybe; - hasDescendants?: InputMaybe; - hasSavePoint?: InputMaybe; - hideTitle?: InputMaybe; id?: InputMaybe>>; - image?: InputMaybe>>; inReverse?: InputMaybe; - leaves?: InputMaybe; - level?: InputMaybe; limit?: InputMaybe; - linkTo?: InputMaybe>>; - nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; - pageType?: InputMaybe>>; - positionedAfter?: InputMaybe; - positionedBefore?: InputMaybe; - postDate?: InputMaybe>>; preferSites?: InputMaybe>>; - prevSiblingOf?: InputMaybe; - questionText?: InputMaybe>>; - readOnly?: InputMaybe; + primaryOwnerId?: InputMaybe>>; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9182,26 +10363,25 @@ export type Pages_RedirectPage_EntryChildrenArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; - section?: InputMaybe>>; - sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; - structureId?: InputMaybe; - text?: InputMaybe>>; title?: InputMaybe>>; type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; - widgetInstructions?: InputMaybe>>; - withStructure?: InputMaybe; }; -export type Pages_RedirectPage_EntryDescendantsArgs = { +export type Questions_Default_EntryAnswerTypeArgs = { + label?: InputMaybe; +}; + + +export type Questions_Default_EntryChildrenArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -9268,7 +10448,7 @@ export type Pages_RedirectPage_EntryDescendantsArgs = { }; -export type Pages_RedirectPage_EntryLocalizedArgs = { +export type Questions_Default_EntryDescendantsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -9335,7 +10515,7 @@ export type Pages_RedirectPage_EntryLocalizedArgs = { }; -export type Pages_RedirectPage_EntryNextArgs = { +export type Questions_Default_EntryLocalizedArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -9402,45 +10582,19 @@ export type Pages_RedirectPage_EntryNextArgs = { }; -export type Pages_RedirectPage_EntryParentArgs = { - after?: InputMaybe; - ancestorDist?: InputMaybe; - ancestorOf?: InputMaybe; - answerType?: InputMaybe>>; - authorGroup?: InputMaybe>>; - authorGroupId?: InputMaybe>>; - authorId?: InputMaybe>>; - before?: InputMaybe; +export type Questions_Default_EntryMultiPartBlocksArgs = { dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; - descendantDist?: InputMaybe; - descendantOf?: InputMaybe; - description?: InputMaybe>>; - editable?: InputMaybe; - expiryDate?: InputMaybe>>; - filterColorOptions?: InputMaybe>>; + fieldId?: InputMaybe>>; fixedOrder?: InputMaybe; - hasDescendants?: InputMaybe; - hasSavePoint?: InputMaybe; - hideTitle?: InputMaybe; id?: InputMaybe>>; - image?: InputMaybe>>; inReverse?: InputMaybe; - leaves?: InputMaybe; - level?: InputMaybe; + level?: InputMaybe; limit?: InputMaybe; - linkTo?: InputMaybe>>; - nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; - pageType?: InputMaybe>>; - positionedAfter?: InputMaybe; - positionedBefore?: InputMaybe; - postDate?: InputMaybe>>; preferSites?: InputMaybe>>; - prevSiblingOf?: InputMaybe; - questionText?: InputMaybe>>; - readOnly?: InputMaybe; + primaryOwnerId?: InputMaybe>>; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9450,26 +10604,20 @@ export type Pages_RedirectPage_EntryParentArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; - section?: InputMaybe>>; - sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; - structureId?: InputMaybe; - text?: InputMaybe>>; title?: InputMaybe>>; type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; - widgetInstructions?: InputMaybe>>; - withStructure?: InputMaybe; }; -export type Pages_RedirectPage_EntryPrevArgs = { +export type Questions_Default_EntryNextArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -9535,66 +10683,75 @@ export type Pages_RedirectPage_EntryPrevArgs = { withStructure?: InputMaybe; }; -export type QuestionWidgetsBlock_NeoField = QuestionWidgetsBlock_ColorFilterToolBlock_BlockType; - -export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - colorFilterTool: Array>; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; -}; - -export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockType_CountArgs = { - field: Scalars['String']['input']; +export type Questions_Default_EntryParentArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; }; -export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockTypeColorFilterToolArgs = { +export type Questions_Default_EntryPrevArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -9660,16 +10817,49 @@ export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockTypeColorFilterToolAr withStructure?: InputMaybe; }; -export type QuestionsSectionEntryUnion = Questions_Default_Entry; -export type Questions_Default_Entry = ElementInterface & EntryInterface & { - __typename?: 'questions_default_Entry'; +export type Questions_Default_EntryQuestionWidgetsBlockArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type ReferenceModalsSectionEntryUnion = ReferenceModals_Default_Entry; + +export type ReferenceModals_Default_Entry = ElementInterface & EntryInterface & { + __typename?: 'referenceModals_default_Entry'; /** Return a number of related elements for a field. */ _count?: Maybe; /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ ancestors: Array; - answerOptions: Array>; - answerType?: Maybe; /** Whether the element is archived. */ archived?: Maybe; /** The entry’s author. */ @@ -9682,6 +10872,7 @@ export type Questions_Default_Entry = ElementInterface & EntryInterface & { canonicalUid?: Maybe; /** The entry’s children, if the section is a structure. Accepts the same arguments as the `entries` query. */ children: Array; + contentBlocks?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -9716,7 +10907,6 @@ export type Questions_Default_Entry = ElementInterface & EntryInterface & { lft?: Maybe; /** The same element in other locales. */ localized: Array; - multiPartBlocks?: Maybe>>; /** Returns the next element relative to this one, from a given set of criteria. */ next?: Maybe; /** The entry’s parent, if the section is a structure. */ @@ -9725,8 +10915,6 @@ export type Questions_Default_Entry = ElementInterface & EntryInterface & { postDate?: Maybe; /** Returns the previous element relative to this one, from a given set of criteria. */ prev?: Maybe; - questionText?: Maybe; - questionWidgetsBlock?: Maybe>>; /** The revision ID (from the `revisions` table). */ revisionId?: Maybe; /** The revision notes (from the `revisions` table). */ @@ -9777,16 +10965,15 @@ export type Questions_Default_Entry = ElementInterface & EntryInterface & { uri?: Maybe; /** The element’s full URL */ url?: Maybe; - widgetInstructions?: Maybe; }; -export type Questions_Default_Entry_CountArgs = { +export type ReferenceModals_Default_Entry_CountArgs = { field: Scalars['String']['input']; }; -export type Questions_Default_EntryAncestorsArgs = { +export type ReferenceModals_Default_EntryAncestorsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -9853,46 +11040,7 @@ export type Questions_Default_EntryAncestorsArgs = { }; -export type Questions_Default_EntryAnswerOptionsArgs = { - dateCreated?: InputMaybe>>; - dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; - fixedOrder?: InputMaybe; - id?: InputMaybe>>; - inReverse?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe; - preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; - ref?: InputMaybe>>; - relatedTo?: InputMaybe>>; - relatedToAll?: InputMaybe>>; - relatedToAssets?: InputMaybe>>; - relatedToCategories?: InputMaybe>>; - relatedToEntries?: InputMaybe>>; - relatedToTags?: InputMaybe>>; - relatedToUsers?: InputMaybe>>; - search?: InputMaybe; - site?: InputMaybe>>; - siteId?: InputMaybe>>; - siteSettingsId?: InputMaybe>>; - slug?: InputMaybe>>; - title?: InputMaybe>>; - type?: InputMaybe>>; - typeId?: InputMaybe>>; - uid?: InputMaybe>>; - unique?: InputMaybe; - uri?: InputMaybe>>; -}; - - -export type Questions_Default_EntryAnswerTypeArgs = { - label?: InputMaybe; -}; - - -export type Questions_Default_EntryChildrenArgs = { +export type ReferenceModals_Default_EntryChildrenArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -9959,7 +11107,42 @@ export type Questions_Default_EntryChildrenArgs = { }; -export type Questions_Default_EntryDescendantsArgs = { +export type ReferenceModals_Default_EntryContentBlocksArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + + +export type ReferenceModals_Default_EntryDescendantsArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -10026,7 +11209,7 @@ export type Questions_Default_EntryDescendantsArgs = { }; -export type Questions_Default_EntryLocalizedArgs = { +export type ReferenceModals_Default_EntryLocalizedArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -10093,42 +11276,7 @@ export type Questions_Default_EntryLocalizedArgs = { }; -export type Questions_Default_EntryMultiPartBlocksArgs = { - dateCreated?: InputMaybe>>; - dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; - fixedOrder?: InputMaybe; - id?: InputMaybe>>; - inReverse?: InputMaybe; - level?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe; - preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; - ref?: InputMaybe>>; - relatedTo?: InputMaybe>>; - relatedToAll?: InputMaybe>>; - relatedToAssets?: InputMaybe>>; - relatedToCategories?: InputMaybe>>; - relatedToEntries?: InputMaybe>>; - relatedToTags?: InputMaybe>>; - relatedToUsers?: InputMaybe>>; - search?: InputMaybe; - site?: InputMaybe>>; - siteId?: InputMaybe>>; - siteSettingsId?: InputMaybe>>; - slug?: InputMaybe>>; - title?: InputMaybe>>; - type?: InputMaybe>>; - typeId?: InputMaybe>>; - uid?: InputMaybe>>; - unique?: InputMaybe; - uri?: InputMaybe>>; -}; - - -export type Questions_Default_EntryNextArgs = { +export type ReferenceModals_Default_EntryNextArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -10195,7 +11343,7 @@ export type Questions_Default_EntryNextArgs = { }; -export type Questions_Default_EntryParentArgs = { +export type ReferenceModals_Default_EntryParentArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -10262,7 +11410,7 @@ export type Questions_Default_EntryParentArgs = { }; -export type Questions_Default_EntryPrevArgs = { +export type ReferenceModals_Default_EntryPrevArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; @@ -10328,41 +11476,6 @@ export type Questions_Default_EntryPrevArgs = { withStructure?: InputMaybe; }; - -export type Questions_Default_EntryQuestionWidgetsBlockArgs = { - dateCreated?: InputMaybe>>; - dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; - fixedOrder?: InputMaybe; - id?: InputMaybe>>; - inReverse?: InputMaybe; - level?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe; - preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; - ref?: InputMaybe>>; - relatedTo?: InputMaybe>>; - relatedToAll?: InputMaybe>>; - relatedToAssets?: InputMaybe>>; - relatedToCategories?: InputMaybe>>; - relatedToEntries?: InputMaybe>>; - relatedToTags?: InputMaybe>>; - relatedToUsers?: InputMaybe>>; - search?: InputMaybe; - site?: InputMaybe>>; - siteId?: InputMaybe>>; - siteSettingsId?: InputMaybe>>; - slug?: InputMaybe>>; - title?: InputMaybe>>; - type?: InputMaybe>>; - typeId?: InputMaybe>>; - uid?: InputMaybe>>; - unique?: InputMaybe; - uri?: InputMaybe>>; -}; - export type ScatterplotItems_MatrixField = ScatterplotItems_Item_BlockType; export type ScatterplotItems_Item_BlockType = ElementInterface & MatrixBlockInterface & { @@ -12151,7 +13264,7 @@ export type InvestigationChildPageQuery = { __typename?: 'Query', entry?: { __ty ) | { __typename?: 'investigations_investigationParent_Entry' } | ( { __typename?: 'investigations_investigationSectionBreakChild_Entry' } & { ' $fragmentRefs'?: { 'InvestigationSectionBreakTemplateFragment': InvestigationSectionBreakTemplateFragment } } - ) | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null }; + ) | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null }; export type InvestigationChildPageMetadataQueryVariables = Exact<{ site?: InputMaybe> | InputMaybe>; @@ -12159,7 +13272,7 @@ export type InvestigationChildPageMetadataQueryVariables = Exact<{ }>; -export type InvestigationChildPageMetadataQuery = { __typename?: 'Query', entry?: { __typename?: 'homepage_homepage_Entry', title?: string | null } | { __typename?: 'investigations_default_Entry', title?: string | null } | { __typename?: 'investigations_investigationParent_Entry', title?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', title?: string | null } | { __typename?: 'pages_pages_Entry', title?: string | null } | { __typename?: 'pages_redirectPage_Entry', title?: string | null } | { __typename?: 'questions_default_Entry', title?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', title?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', title?: string | null } | null }; +export type InvestigationChildPageMetadataQuery = { __typename?: 'Query', entry?: { __typename?: 'homepage_homepage_Entry', title?: string | null } | { __typename?: 'investigations_default_Entry', title?: string | null } | { __typename?: 'investigations_investigationParent_Entry', title?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', title?: string | null } | { __typename?: 'pages_pages_Entry', title?: string | null } | { __typename?: 'pages_redirectPage_Entry', title?: string | null } | { __typename?: 'questions_default_Entry', title?: string | null } | { __typename?: 'referenceModals_default_Entry', title?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', title?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', title?: string | null } | null }; export type InvestigationIdQueryVariables = Exact<{ site?: InputMaybe> | InputMaybe>; @@ -12167,7 +13280,7 @@ export type InvestigationIdQueryVariables = Exact<{ }>; -export type InvestigationIdQuery = { __typename?: 'Query', entry?: { __typename?: 'homepage_homepage_Entry', id?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null } | null }; +export type InvestigationIdQuery = { __typename?: 'Query', entry?: { __typename?: 'homepage_homepage_Entry', id?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null } | null }; export type InvestigationPageQueryVariables = Exact<{ site?: InputMaybe> | InputMaybe>; @@ -12178,7 +13291,7 @@ export type InvestigationPageQueryVariables = Exact<{ export type InvestigationPageQuery = { __typename?: 'Query', entry?: { __typename: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry' } | ( { __typename: 'investigations_investigationParent_Entry' } & { ' $fragmentRefs'?: { 'InvestigationLandingPageTemplateFragment': InvestigationLandingPageTemplateFragment } } - ) | { __typename: 'investigations_investigationSectionBreakChild_Entry' } | { __typename: 'pages_pages_Entry' } | { __typename: 'pages_redirectPage_Entry' } | { __typename: 'questions_default_Entry' } | { __typename: 'widgets_cameraFilterTool_Entry' } | { __typename: 'widgets_colorFilterTool_Entry' } | null }; + ) | { __typename: 'investigations_investigationSectionBreakChild_Entry' } | { __typename: 'pages_pages_Entry' } | { __typename: 'pages_redirectPage_Entry' } | { __typename: 'questions_default_Entry' } | { __typename: 'referenceModals_default_Entry' } | { __typename: 'widgets_cameraFilterTool_Entry' } | { __typename: 'widgets_colorFilterTool_Entry' } | null }; export type GlobalsQueryQueryVariables = Exact<{ site?: InputMaybe> | InputMaybe>; @@ -12186,7 +13299,7 @@ export type GlobalsQueryQueryVariables = Exact<{ }>; -export type GlobalsQueryQuery = { __typename?: 'Query', headerNavItems?: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | null> | null, siteInfo?: { __typename?: 'siteInfo_GlobalSet', language?: string | null, name: string, handle: string, siteTitle?: string | null, siteDescription?: string | null } | null, categories?: Array<{ __typename?: 'sortOptions_Category', id?: string | null, slug?: string | null, groupHandle: string, title?: string | null } | null> | null }; +export type GlobalsQueryQuery = { __typename?: 'Query', headerNavItems?: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'questions_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'referenceModals_default_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, title?: string | null, uri?: string | null }> } | null> | null, siteInfo?: { __typename?: 'siteInfo_GlobalSet', language?: string | null, name: string, handle: string, siteTitle?: string | null, siteDescription?: string | null } | null, categories?: Array<{ __typename?: 'sortOptions_Category', id?: string | null, slug?: string | null, groupHandle: string, title?: string | null } | null> | null }; export type HomepageQueryQueryVariables = Exact<{ site?: InputMaybe> | InputMaybe>; @@ -12197,7 +13310,7 @@ export type HomepageQueryQueryVariables = Exact<{ export type HomepageQueryQuery = { __typename?: 'Query', entry?: ( { __typename: 'homepage_homepage_Entry' } & { ' $fragmentRefs'?: { 'HomepageTemplateFragment': HomepageTemplateFragment } } - ) | { __typename: 'investigations_default_Entry' } | { __typename: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry' } | { __typename: 'pages_pages_Entry' } | { __typename: 'pages_redirectPage_Entry' } | { __typename: 'questions_default_Entry' } | { __typename: 'widgets_cameraFilterTool_Entry' } | { __typename: 'widgets_colorFilterTool_Entry' } | null }; + ) | { __typename: 'investigations_default_Entry' } | { __typename: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry' } | { __typename: 'pages_pages_Entry' } | { __typename: 'pages_redirectPage_Entry' } | { __typename: 'questions_default_Entry' } | { __typename: 'referenceModals_default_Entry' } | { __typename: 'widgets_cameraFilterTool_Entry' } | { __typename: 'widgets_colorFilterTool_Entry' } | null }; export type FacebookOauthUrlQueryVariables = Exact<{ [key: string]: never; }>; @@ -12315,7 +13428,7 @@ export type RefreshTokenMutation = { __typename?: 'Mutation', refreshToken: ( export type BarGraphToolBlockFragment = { __typename: 'contentBlocks_barGraphTool_BlockType', id?: string | null, title?: string | null, yAxisMin?: any | null, yAxisMax?: any | null, yAxisLabel?: string | null, xAxisLabel?: string | null, graphBars: Array<{ __typename: 'graphBars_bar_BlockType', yValue?: string | null, label?: string | null } | null> } & { ' $fragmentName'?: 'BarGraphToolBlockFragment' }; -export type ColorFilterToolBlockFragment = { __typename?: 'widgets_colorFilterTool_Entry', title?: string | null, filterColorOptionsLabels?: Array | null, filterColorOptionsValues?: Array | null, colorFilterToolObjects?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType', groupName?: string | null, objects?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType', objectName?: string | null, objectCaption?: string | null, filterImages?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType', isEnabled?: boolean | null, isActive?: boolean | null, max?: any | null, min?: any | null, defaultValue?: any | null, label?: string | null, color?: string | null, image?: Array | null } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | null> | null } & { ' $fragmentName'?: 'ColorFilterToolBlockFragment' }; +export type ColorFilterToolBlockFragment = { __typename?: 'widgets_colorFilterTool_Entry', title?: string | null, filterColorOptionsLabels?: Array | null, filterColorOptionsValues?: Array | null, colorFilterToolObjects?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType', groupName?: string | null, objects?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType', objectName?: string | null, objectCaption?: string | null, filterImages?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType', isEnabled?: boolean | null, isActive?: boolean | null, max?: any | null, min?: any | null, defaultValue?: any | null, label?: string | null, color?: string | null, image?: Array | null } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | null> | null } & { ' $fragmentName'?: 'ColorFilterToolBlockFragment' }; export type FilterToolBlockFragment = { __typename: 'contentBlocks_filterTool_BlockType', id?: string | null, preSelectedColor?: string | null, readOnly?: boolean | null } & { ' $fragmentName'?: 'FilterToolBlockFragment' }; @@ -12333,7 +13446,7 @@ export type InteractionGroupContainerBlockFragment = { __typename: 'contentBlock ) | ( { __typename: 'contentBlocks_questionBlock_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'QuestionsBlockFragment': QuestionsBlockFragment } } - ) | ( + ) | { __typename: 'contentBlocks_referenceModalBlock_BlockType', id?: string | null } | ( { __typename: 'contentBlocks_scatterplotTool_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'ScatterplotToolBlockFragment': ScatterplotToolBlockFragment } } ) | ( @@ -12347,7 +13460,7 @@ export type InteractionGroupContainerBlockFragment = { __typename: 'contentBlock export type QuestionsBlockFragment = { __typename?: 'contentBlocks_questionBlock_BlockType', id?: string | null, questionEntries: Array<{ __typename: 'homepage_homepage_Entry', id?: string | null } | { __typename: 'investigations_default_Entry', id?: string | null } | { __typename: 'investigations_investigationParent_Entry', id?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null } | { __typename: 'pages_pages_Entry', id?: string | null } | { __typename: 'pages_redirectPage_Entry', id?: string | null } | ( { __typename: 'questions_default_Entry', id?: string | null } & { ' $fragmentRefs'?: { 'QuestionFactoryFragment': QuestionFactoryFragment } } - ) | { __typename: 'widgets_cameraFilterTool_Entry', id?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', id?: string | null } | null> } & { ' $fragmentName'?: 'QuestionsBlockFragment' }; + ) | { __typename: 'referenceModals_default_Entry', id?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', id?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', id?: string | null } | null> } & { ' $fragmentName'?: 'QuestionsBlockFragment' }; export type ScatterplotToolBlockFragment = { __typename?: 'contentBlocks_scatterplotTool_BlockType', id?: string | null, title?: string | null, xAxisMin?: any | null, yAxisMax?: any | null, yAxisLabel?: string | null, xAxisLabel?: string | null, scatterplotItems: Array<{ __typename?: 'scatterplotItems_item_BlockType', xValue?: any | null, yValue?: any | null, itemLabel?: string | null } | null> } & { ' $fragmentName'?: 'ScatterplotToolBlockFragment' }; @@ -12364,7 +13477,7 @@ export type TwoColumnContainerBlockFragment = { __typename?: 'contentBlocks_twoC ) | { __typename: 'contentBlocks_group_BlockType', id?: string | null } | ( { __typename: 'contentBlocks_image_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'ImageBlockFragment': ImageBlockFragment } } - ) | { __typename: 'contentBlocks_questionBlock_BlockType', id?: string | null } | ( + ) | { __typename: 'contentBlocks_questionBlock_BlockType', id?: string | null } | { __typename: 'contentBlocks_referenceModalBlock_BlockType', id?: string | null } | ( { __typename: 'contentBlocks_scatterplotTool_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'ScatterplotToolBlockFragment': ScatterplotToolBlockFragment } } ) | ( @@ -12382,7 +13495,7 @@ export type TwoColumnContainerBlockFragment = { __typename?: 'contentBlocks_twoC ) | { __typename: 'contentBlocks_group_BlockType', id?: string | null } | ( { __typename: 'contentBlocks_image_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'ImageBlockFragment': ImageBlockFragment } } - ) | { __typename: 'contentBlocks_questionBlock_BlockType', id?: string | null } | ( + ) | { __typename: 'contentBlocks_questionBlock_BlockType', id?: string | null } | { __typename: 'contentBlocks_referenceModalBlock_BlockType', id?: string | null } | ( { __typename: 'contentBlocks_scatterplotTool_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'ScatterplotToolBlockFragment': ScatterplotToolBlockFragment } } ) | ( @@ -12391,7 +13504,7 @@ export type TwoColumnContainerBlockFragment = { __typename?: 'contentBlocks_twoC ) | ( { __typename: 'contentBlocks_text_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'TextBlockFragment': TextBlockFragment } } - ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_multiselect_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_readonlyText_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_select_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_text_BlockType', id?: string | null } | { __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', id?: string | null } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } & { ' $fragmentName'?: 'TwoColumnContainerBlockFragment' }; + ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_multiselect_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_readonlyText_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_select_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_text_BlockType', id?: string | null } | { __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', id?: string | null } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } & { ' $fragmentName'?: 'TwoColumnContainerBlockFragment' }; type ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment = ( { __typename: 'contentBlocks_barGraphTool_BlockType' } @@ -12426,6 +13539,8 @@ type ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment = ( & { ' $fragmentRefs'?: { 'QuestionsBlockFragment': QuestionsBlockFragment } } ) & { ' $fragmentName'?: 'ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment' }; +type ContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment = { __typename: 'contentBlocks_referenceModalBlock_BlockType' } & { ' $fragmentName'?: 'ContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment' }; + type ContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment = ( { __typename: 'contentBlocks_scatterplotTool_BlockType' } & { ' $fragmentRefs'?: { 'ScatterplotToolBlockFragment': ScatterplotToolBlockFragment } } @@ -12446,9 +13561,9 @@ type ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment = ( & { ' $fragmentRefs'?: { 'TwoColumnContainerBlockFragment': TwoColumnContainerBlockFragment } } ) & { ' $fragmentName'?: 'ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment' }; -export type ContentBlockFactoryFragment = ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColorFilterToolBlock_BlockType_Fragment | ContentBlockFactory_ContentBlocks_FilterTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Group_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Image_BlockType_Fragment | ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Table_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Text_BlockType_Fragment | ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment; +export type ContentBlockFactoryFragment = ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColorFilterToolBlock_BlockType_Fragment | ContentBlockFactory_ContentBlocks_FilterTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Group_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Image_BlockType_Fragment | ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Table_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Text_BlockType_Fragment | ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment; -export type QuestionFactoryFragment = { __typename?: 'questions_default_Entry', answerType?: string | null, id?: string | null, questionText?: string | null, widgetInstructions?: string | null, options: Array<{ __typename?: 'answerOptions_option_BlockType', label?: string | null, value?: string | null } | null>, questionWidgetsBlock?: Array<{ __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', typeHandle?: string | null, colorFilterTool: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | ( +export type QuestionFactoryFragment = { __typename?: 'questions_default_Entry', answerType?: string | null, id?: string | null, questionText?: string | null, widgetInstructions?: string | null, options: Array<{ __typename?: 'answerOptions_option_BlockType', label?: string | null, value?: string | null } | null>, questionWidgetsBlock?: Array<{ __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', typeHandle?: string | null, colorFilterTool: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | ( { __typename?: 'widgets_colorFilterTool_Entry' } & { ' $fragmentRefs'?: { 'ColorFilterToolBlockFragment': ColorFilterToolBlockFragment } } ) | null> } | null> | null, multiPartBlocks?: Array<{ __typename?: 'multiPartBlocks_multiselect_BlockType', id?: string | null, type?: string | null, options: Array<{ __typename?: 'answerOptions_option_BlockType', id?: string | null, label?: string | null, value?: string | null } | null> } | { __typename?: 'multiPartBlocks_readonlyText_BlockType', id?: string | null, type?: string | null, text?: string | null } | { __typename?: 'multiPartBlocks_select_BlockType', id?: string | null, type?: string | null, options: Array<{ __typename?: 'answerOptions_option_BlockType', id?: string | null, label?: string | null, value?: string | null } | null> } | { __typename?: 'multiPartBlocks_text_BlockType', id?: string | null, type?: string | null } | null> | null } & { ' $fragmentName'?: 'QuestionFactoryFragment' }; @@ -12471,6 +13586,8 @@ type SimpleContentBlockFactory_ContentBlocks_Image_BlockType_Fragment = { __type type SimpleContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment = { __typename: 'contentBlocks_questionBlock_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment' }; +type SimpleContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment = { __typename: 'contentBlocks_referenceModalBlock_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment' }; + type SimpleContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment = { __typename: 'contentBlocks_scatterplotTool_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment' }; type SimpleContentBlockFactory_ContentBlocks_Table_BlockType_Fragment = { __typename: 'contentBlocks_table_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_Table_BlockType_Fragment' }; @@ -12482,7 +13599,7 @@ type SimpleContentBlockFactory_ContentBlocks_Text_BlockType_Fragment = ( type SimpleContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment = { __typename: 'contentBlocks_twoColumnContainer_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment' }; -export type SimpleContentBlockFactoryFragment = SimpleContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ColorFilterToolBlock_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_FilterTool_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_Group_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_Image_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_Table_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_Text_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment; +export type SimpleContentBlockFactoryFragment = SimpleContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ColorFilterToolBlock_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_FilterTool_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_Group_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_Image_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_Table_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_Text_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment; type TemplateFactory_Homepage_Homepage_Entry_Fragment = { __typename: 'homepage_homepage_Entry' } & { ' $fragmentName'?: 'TemplateFactory_Homepage_Homepage_Entry_Fragment' }; @@ -12501,11 +13618,13 @@ type TemplateFactory_Pages_RedirectPage_Entry_Fragment = { __typename: 'pages_re type TemplateFactory_Questions_Default_Entry_Fragment = { __typename: 'questions_default_Entry' } & { ' $fragmentName'?: 'TemplateFactory_Questions_Default_Entry_Fragment' }; +type TemplateFactory_ReferenceModals_Default_Entry_Fragment = { __typename: 'referenceModals_default_Entry' } & { ' $fragmentName'?: 'TemplateFactory_ReferenceModals_Default_Entry_Fragment' }; + type TemplateFactory_Widgets_CameraFilterTool_Entry_Fragment = { __typename: 'widgets_cameraFilterTool_Entry' } & { ' $fragmentName'?: 'TemplateFactory_Widgets_CameraFilterTool_Entry_Fragment' }; type TemplateFactory_Widgets_ColorFilterTool_Entry_Fragment = { __typename: 'widgets_colorFilterTool_Entry' } & { ' $fragmentName'?: 'TemplateFactory_Widgets_ColorFilterTool_Entry_Fragment' }; -export type TemplateFactoryFragment = TemplateFactory_Homepage_Homepage_Entry_Fragment | TemplateFactory_Investigations_Default_Entry_Fragment | TemplateFactory_Investigations_InvestigationParent_Entry_Fragment | TemplateFactory_Investigations_InvestigationSectionBreakChild_Entry_Fragment | TemplateFactory_Pages_Pages_Entry_Fragment | TemplateFactory_Pages_RedirectPage_Entry_Fragment | TemplateFactory_Questions_Default_Entry_Fragment | TemplateFactory_Widgets_CameraFilterTool_Entry_Fragment | TemplateFactory_Widgets_ColorFilterTool_Entry_Fragment; +export type TemplateFactoryFragment = TemplateFactory_Homepage_Homepage_Entry_Fragment | TemplateFactory_Investigations_Default_Entry_Fragment | TemplateFactory_Investigations_InvestigationParent_Entry_Fragment | TemplateFactory_Investigations_InvestigationSectionBreakChild_Entry_Fragment | TemplateFactory_Pages_Pages_Entry_Fragment | TemplateFactory_Pages_RedirectPage_Entry_Fragment | TemplateFactory_Questions_Default_Entry_Fragment | TemplateFactory_ReferenceModals_Default_Entry_Fragment | TemplateFactory_Widgets_CameraFilterTool_Entry_Fragment | TemplateFactory_Widgets_ColorFilterTool_Entry_Fragment; export type HomepageTemplateFragment = { __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, contentBlocks?: Array<( { __typename?: 'contentBlocks_barGraphTool_BlockType' } @@ -12534,6 +13653,9 @@ export type HomepageTemplateFragment = { __typename?: 'homepage_homepage_Entry', ) | ( { __typename?: 'contentBlocks_questionBlock_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment': ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment } } + ) | ( + { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } + & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment': ContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment } } ) | ( { __typename?: 'contentBlocks_scatterplotTool_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment': ContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment } } @@ -12575,6 +13697,9 @@ export type InvestigationChildPageTemplateFragment = { __typename: 'investigatio ) | ( { __typename?: 'contentBlocks_questionBlock_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment': ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment } } + ) | ( + { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } + & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment': ContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment } } ) | ( { __typename?: 'contentBlocks_scatterplotTool_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment': ContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment } } @@ -12587,11 +13712,11 @@ export type InvestigationChildPageTemplateFragment = { __typename: 'investigatio ) | ( { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment': ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment } } - ) | null> | null, prev?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, next?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, parent?: { __typename?: 'homepage_homepage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_pages_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'questions_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | null } & { ' $fragmentName'?: 'InvestigationChildPageTemplateFragment' }; + ) | null> | null, prev?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'referenceModals_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, next?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'referenceModals_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, parent?: { __typename?: 'homepage_homepage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_pages_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'questions_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'referenceModals_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | null } & { ' $fragmentName'?: 'InvestigationChildPageTemplateFragment' }; -export type InvestigationLandingPageTemplateFragment = { __typename?: 'investigations_investigationParent_Entry', title?: string | null, image?: Array | null, children: Array<{ __typename?: 'homepage_homepage_Entry', uri?: string | null } | { __typename?: 'investigations_default_Entry', uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename?: 'pages_pages_Entry', uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', uri?: string | null } | { __typename?: 'questions_default_Entry', uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', uri?: string | null }> } & { ' $fragmentName'?: 'InvestigationLandingPageTemplateFragment' }; +export type InvestigationLandingPageTemplateFragment = { __typename?: 'investigations_investigationParent_Entry', title?: string | null, image?: Array | null, children: Array<{ __typename?: 'homepage_homepage_Entry', uri?: string | null } | { __typename?: 'investigations_default_Entry', uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename?: 'pages_pages_Entry', uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', uri?: string | null } | { __typename?: 'questions_default_Entry', uri?: string | null } | { __typename?: 'referenceModals_default_Entry', uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', uri?: string | null }> } & { ' $fragmentName'?: 'InvestigationLandingPageTemplateFragment' }; -export type InvestigationSectionBreakTemplateFragment = { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, text?: string | null, prev?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, next?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, parent?: { __typename?: 'homepage_homepage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_pages_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'questions_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | null } & { ' $fragmentName'?: 'InvestigationSectionBreakTemplateFragment' }; +export type InvestigationSectionBreakTemplateFragment = { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, text?: string | null, prev?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'referenceModals_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, next?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'referenceModals_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, parent?: { __typename?: 'homepage_homepage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_pages_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'questions_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'referenceModals_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | null } & { ' $fragmentName'?: 'InvestigationSectionBreakTemplateFragment' }; export type PageTemplateFragment = { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, contentBlocks?: Array<( { __typename?: 'contentBlocks_barGraphTool_BlockType' } @@ -12620,6 +13745,9 @@ export type PageTemplateFragment = { __typename?: 'pages_pages_Entry', id?: stri ) | ( { __typename?: 'contentBlocks_questionBlock_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment': ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment } } + ) | ( + { __typename?: 'contentBlocks_referenceModalBlock_BlockType' } + & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment': ContentBlockFactory_ContentBlocks_ReferenceModalBlock_BlockType_Fragment } } ) | ( { __typename?: 'contentBlocks_scatterplotTool_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment': ContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment } } @@ -12644,30 +13772,30 @@ export type UserFragmentFragment = { __typename?: 'User', id?: string | null, st export const TextBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]} as unknown as DocumentNode; export const SimpleContentBlockFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SimpleContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]} as unknown as DocumentNode; export const FilterToolBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}}]} as unknown as DocumentNode; -export const ImageBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}}]} as unknown as DocumentNode; +export const ImageBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}}]} as unknown as DocumentNode; export const TableBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const BarGraphToolBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}}]} as unknown as DocumentNode; export const ScatterplotToolBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}}]} as unknown as DocumentNode; -export const TwoColumnContainerBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}}]} as unknown as DocumentNode; +export const TwoColumnContainerBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}}]} as unknown as DocumentNode; export const ColorFilterToolBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const QuestionFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const QuestionsBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}}]} as unknown as DocumentNode; -export const InteractionGroupContainerBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}}]} as unknown as DocumentNode; -export const ContentBlockFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]} as unknown as DocumentNode; -export const PageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"pages_pages_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; -export const TemplateFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TemplateFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EntryInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageTemplate"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"pages_pages_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}}]} as unknown as DocumentNode; -export const HomepageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HomepageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"homepage_homepage_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; -export const InvestigationChildPageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationChildPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; -export const InvestigationLandingPageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationLandingPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationParent_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]} as unknown as DocumentNode; +export const InteractionGroupContainerBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}}]} as unknown as DocumentNode; +export const ContentBlockFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]} as unknown as DocumentNode; +export const PageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"pages_pages_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; +export const TemplateFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TemplateFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EntryInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageTemplate"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"pages_pages_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}}]} as unknown as DocumentNode; +export const HomepageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HomepageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"homepage_homepage_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; +export const InvestigationChildPageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationChildPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; +export const InvestigationLandingPageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationLandingPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationParent_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]} as unknown as DocumentNode; export const InvestigationSectionBreakTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationSectionBreakTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const UserFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"UserFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UserInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]} as unknown as DocumentNode; export const AuthFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AuthFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Auth"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"jwt"}},{"kind":"Field","name":{"kind":"Name","value":"jwtExpiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"refreshToken"}},{"kind":"Field","name":{"kind":"Name","value":"refreshTokenExpiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"user"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"UserFragment"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"UserFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UserInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]} as unknown as DocumentNode; -export const InvestigationChildPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationChildPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationChildPageTemplate"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationSectionBreakTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationChildPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationSectionBreakTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const InvestigationChildPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationChildPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationChildPageTemplate"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationSectionBreakTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationChildPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationSectionBreakTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const InvestigationChildPageMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationChildPageMetadata"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}}]}}]}}]} as unknown as DocumentNode; export const InvestigationIdDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationId"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; -export const InvestigationPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationLandingPageTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationLandingPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationParent_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]} as unknown as DocumentNode; +export const InvestigationPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationLandingPageTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationLandingPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationParent_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]} as unknown as DocumentNode; export const GlobalsQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GlobalsQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"section"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"headerNavItems"},"name":{"kind":"Name","value":"entries"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"Variable","name":{"kind":"Name","value":"section"}}},{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"level"},"value":{"kind":"IntValue","value":"1"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"siteInfo"},"name":{"kind":"Name","value":"globalSet"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"handle"},"value":{"kind":"StringValue","value":"siteInfo","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"siteInfo_GlobalSet"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"handle"}},{"kind":"Field","name":{"kind":"Name","value":"siteTitle"}},{"kind":"Field","name":{"kind":"Name","value":"siteDescription"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"categories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"groupHandle"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}}]}}]} as unknown as DocumentNode; -export const HomepageQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HomepageQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"HomepageTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HomepageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"homepage_homepage_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}}]} as unknown as DocumentNode; +export const HomepageQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HomepageQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"HomepageTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HomepageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"homepage_homepage_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}}]} as unknown as DocumentNode; export const FacebookOauthUrlDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FacebookOauthUrl"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"facebookOauthUrl"}}]}}]} as unknown as DocumentNode; export const GoogleSignInStudentDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"GoogleSignInStudent"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"idToken"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"googleSignInStudents"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"idToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"idToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AuthFragment"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"UserFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UserInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AuthFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Auth"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"jwt"}},{"kind":"Field","name":{"kind":"Name","value":"jwtExpiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"refreshToken"}},{"kind":"Field","name":{"kind":"Name","value":"refreshTokenExpiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"user"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"UserFragment"}}]}}]}}]} as unknown as DocumentNode; export const GoogleSignInEducatorDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"GoogleSignInEducator"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"idToken"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"googleSignInEducators"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"idToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"idToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AuthFragment"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"UserFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UserInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AuthFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Auth"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"jwt"}},{"kind":"Field","name":{"kind":"Name","value":"jwtExpiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"refreshToken"}},{"kind":"Field","name":{"kind":"Name","value":"refreshTokenExpiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"user"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"UserFragment"}}]}}]}}]} as unknown as DocumentNode; diff --git a/gql/student-schema/graphql.ts b/gql/student-schema/graphql.ts index fdc459cd..ddd5b563 100644 --- a/gql/student-schema/graphql.ts +++ b/gql/student-schema/graphql.ts @@ -231,12 +231,14 @@ export type AnswerInterface_CountArgs = { }; export type AssetCriteriaInput = { + availableFilters?: InputMaybe>>; /** Narrows the query results based on the elements’ creation dates. */ dateCreated?: InputMaybe>>; /** Narrows the query results based on the assets’ files’ last-modified dates. */ dateModified?: InputMaybe; /** Narrows the query results based on the elements’ last-updated dates. */ dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; /** Narrows the query results based on the assets’ filenames. */ filename?: InputMaybe>>; /** Causes the query results to be returned in the order specified by the `id` argument. */ @@ -428,9 +430,11 @@ export type AssetInterfaceHeightArgs = { /** This is the interface implemented by all assets. */ export type AssetInterfaceNextArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -472,9 +476,11 @@ export type AssetInterfaceNextArgs = { /** This is the interface implemented by all assets. */ export type AssetInterfacePrevArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -1333,6 +1339,7 @@ export type EntryCriteriaInput = { editable?: InputMaybe; /** Narrows the query results based on the entries’ expiry dates. */ expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; /** Causes the query results to be returned in the order specified by the `id` argument. */ fixedOrder?: InputMaybe; /** Narrows the query results based on whether the elements have any descendants in their structure. */ @@ -1369,6 +1376,7 @@ export type EntryCriteriaInput = { /** Narrows the query results to only the entry that comes immediately before another element in its structure, provided by its ID. */ prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; /** Narrows the query results based on a reference string. */ ref?: InputMaybe>>; /** Narrows the query results to elements that relate to the provided element IDs. This argument is ignored, if `relatedToAll` is also used. */ @@ -1551,6 +1559,7 @@ export type EntryInterfaceAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1572,6 +1581,7 @@ export type EntryInterfaceAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1617,6 +1627,7 @@ export type EntryInterfaceChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1638,6 +1649,7 @@ export type EntryInterfaceChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1683,6 +1695,7 @@ export type EntryInterfaceDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1704,6 +1717,7 @@ export type EntryInterfaceDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1749,6 +1763,7 @@ export type EntryInterfaceLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1770,6 +1785,7 @@ export type EntryInterfaceLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1815,6 +1831,7 @@ export type EntryInterfaceNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1836,6 +1853,7 @@ export type EntryInterfaceNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1881,6 +1899,7 @@ export type EntryInterfaceParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1902,6 +1921,7 @@ export type EntryInterfaceParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -1947,6 +1967,7 @@ export type EntryInterfacePrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -1968,6 +1989,7 @@ export type EntryInterfacePrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -2387,8 +2409,12 @@ export type Query = { ping?: Maybe; /** Entries within the questions section. */ questionsEntries?: Maybe>>; + /** Entries within the referenceModals section. */ + referenceModalsEntries?: Maybe>>; /** Gets authenticated user. */ viewer?: Maybe; + /** Entries within the widgets section. */ + widgetsEntries?: Maybe>>; }; @@ -2425,9 +2451,11 @@ export type QueryAnswersArgs = { export type QueryAssetArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -2468,9 +2496,11 @@ export type QueryAssetArgs = { export type QueryAssetCountArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -2511,9 +2541,11 @@ export type QueryAssetCountArgs = { export type QueryAssetsArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -2707,6 +2739,7 @@ export type QueryEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -2728,6 +2761,7 @@ export type QueryEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -2772,6 +2806,7 @@ export type QueryEntryArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -2793,6 +2828,7 @@ export type QueryEntryArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -2837,6 +2873,7 @@ export type QueryEntryCountArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -2858,6 +2895,7 @@ export type QueryEntryCountArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -2968,6 +3006,7 @@ export type QueryHomepageEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -2989,6 +3028,7 @@ export type QueryHomepageEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -3031,6 +3071,7 @@ export type QueryInvestigationsEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -3052,6 +3093,7 @@ export type QueryInvestigationsEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -3094,6 +3136,7 @@ export type QueryPagesEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -3115,6 +3158,7 @@ export type QueryPagesEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -3157,6 +3201,7 @@ export type QueryQuestionsEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -3178,6 +3223,137 @@ export type QueryQuestionsEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type QueryReferenceModalsEntriesArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type QueryWidgetsEntriesArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -3681,6 +3857,8 @@ export type AnswerOptions_Option_BlockType_CountArgs = { field: Scalars['String']['input']; }; +export type ColorFilterToolObjects_NeoField = ColorFilterToolObjects_Filterimage_BlockType | ColorFilterToolObjects_Group_BlockType | ColorFilterToolObjects_Object_BlockType; + export type ColorFilterToolObjects_Filterimage_BlockType = ElementInterface & NeoBlockInterface & { __typename?: 'colorFilterToolObjects_filterimage_BlockType'; /** Return a number of related elements for a field. */ @@ -3894,31 +4072,54 @@ export type ColorFilterToolObjects_Object_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_CameraFilterTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorFilterToolBlock_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Table_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType; - -export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_barGraphTool_BlockType'; +export type ContentAssets_Asset = AssetInterface & ElementInterface & { + __typename?: 'contentAssets_Asset'; /** Return a number of related elements for a field. */ _count?: Maybe; + /** Alternative text for the asset. */ + alt?: Maybe; /** Whether the element is archived. */ archived?: Maybe; + availableFilters?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; + /** The date the asset file was last modified. */ + dateModified?: Maybe; /** The date the element was last updated. */ dateUpdated?: Maybe; + displayName?: Maybe; /** Whether the element is enabled. */ enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - graphBars: Array>; + /** The file extension for the asset file. */ + extension: Scalars['String']['output']; + /** The filename of the asset file. */ + filename: Scalars['String']['output']; + /** The focal point represented as an array with `x` and `y` keys, or null if it’s not an image. */ + focalPoint?: Maybe>>; + /** The ID of the folder that the asset belongs to. */ + folderId: Scalars['Int']['output']; + /** Returns the file’s format. */ + format?: Maybe; + /** Whether a user-defined focal point is set on the asset. */ + hasFocalPoint: Scalars['Boolean']['output']; + /** The height in pixels or null if it’s not an image. */ + height?: Maybe; /** The ID of the entity */ id?: Maybe; + /** An `` tag based on this asset. */ + img?: Maybe; + /** The file kind. */ + kind: Scalars['String']['output']; /** The language of the site element is associated with. */ language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ - primaryOwnerId?: Maybe; + /** The file’s MIME type, if it can be determined. */ + mimeType?: Maybe; + /** Returns the next element relative to this one, from a given set of criteria. */ + next?: Maybe; + /** The asset’s path in the volume. */ + path: Scalars['String']['output']; + /** Returns the previous element relative to this one, from a given set of criteria. */ + prev?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -3927,49 +4128,88 @@ export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockIn siteId?: Maybe; /** The unique identifier for an element-site relation. */ siteSettingsId?: Maybe; + /** The file size in bytes. */ + size?: Maybe; /** The element’s slug. */ slug?: Maybe; - /** The sort order of the Neo block within the owner element field. */ - sortOrder?: Maybe; + /** Returns a `srcset` attribute value based on the given widths or x-descriptors. */ + srcset?: Maybe; /** The element’s status. */ status?: Maybe; - text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ trashed?: Maybe; - /** The handle of the Neo block’s type. */ - typeHandle?: Maybe; - /** The ID of the Neo block’s type. */ - typeId?: Maybe; /** The UID of the entity */ uid?: Maybe; /** The element’s URI. */ uri?: Maybe; - xAxisLabel?: Maybe; - yAxisLabel?: Maybe; - yAxisMax?: Maybe; - yAxisMin?: Maybe; + /** The full URL of the asset. This field accepts the same fields as the `transform` directive. */ + url?: Maybe; + /** The ID of the volume that the asset belongs to. */ + volumeId?: Maybe; + /** The width in pixels or null if it’s not an image. */ + width?: Maybe; }; -export type ContentBlocks_BarGraphTool_BlockType_CountArgs = { +export type ContentAssets_Asset_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { +export type ContentAssets_AssetAvailableFiltersArgs = { + label?: InputMaybe; +}; + + +export type ContentAssets_AssetFormatArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + + +export type ContentAssets_AssetHeightArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + + +export type ContentAssets_AssetNextArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; + dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; + displayName?: InputMaybe>>; + filename?: InputMaybe>>; fixedOrder?: InputMaybe; + folderId?: InputMaybe>>; + hasAlt?: InputMaybe; + height?: InputMaybe>>; id?: InputMaybe>>; inReverse?: InputMaybe; + includeSubfolders?: InputMaybe; + kind?: InputMaybe>>; limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -3982,36 +4222,215 @@ export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; + size?: InputMaybe>>; slug?: InputMaybe>>; title?: InputMaybe>>; - type?: InputMaybe>>; - typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; + uploader?: InputMaybe; uri?: InputMaybe>>; + volume?: InputMaybe>>; + volumeId?: InputMaybe>>; + width?: InputMaybe>>; + withTransforms?: InputMaybe>>; }; -export type ContentBlocks_CameraFilterTool_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_cameraFilterTool_BlockType'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The ID of the field that owns the Neo block. */ - fieldId?: Maybe; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The Neo block’s level. */ - level?: Maybe; - /** The ID of the primary owner of the Neo block. */ + +export type ContentAssets_AssetPrevArgs = { + availableFilters?: InputMaybe>>; + dateCreated?: InputMaybe>>; + dateModified?: InputMaybe; + dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; + filename?: InputMaybe>>; + fixedOrder?: InputMaybe; + folderId?: InputMaybe>>; + hasAlt?: InputMaybe; + height?: InputMaybe>>; + id?: InputMaybe>>; + inReverse?: InputMaybe; + includeSubfolders?: InputMaybe; + kind?: InputMaybe>>; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + size?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uploader?: InputMaybe; + uri?: InputMaybe>>; + volume?: InputMaybe>>; + volumeId?: InputMaybe>>; + width?: InputMaybe>>; + withTransforms?: InputMaybe>>; +}; + + +export type ContentAssets_AssetSrcsetArgs = { + sizes: Array; +}; + + +export type ContentAssets_AssetUrlArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + + +export type ContentAssets_AssetWidthArgs = { + format?: InputMaybe; + handle?: InputMaybe; + height?: InputMaybe; + immediately?: InputMaybe; + interlace?: InputMaybe; + mode?: InputMaybe; + position?: InputMaybe; + quality?: InputMaybe; + transform?: InputMaybe; + width?: InputMaybe; +}; + +export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_CameraFilterTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorFilterToolBlock_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ReferenceModalBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Table_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType; + +export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_barGraphTool_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + graphBars: Array>; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + text?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; + xAxisLabel?: Maybe; + yAxisLabel?: Maybe; + yAxisMax?: Maybe; + yAxisMin?: Maybe; +}; + + +export type ContentBlocks_BarGraphTool_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type ContentBlocks_CameraFilterTool_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_cameraFilterTool_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ primaryOwnerId?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; @@ -4233,6 +4652,7 @@ export type ContentBlocks_ColorFilterToolBlock_BlockTypeColorFilterToolArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -4254,6 +4674,7 @@ export type ContentBlocks_ColorFilterToolBlock_BlockTypeColorFilterToolArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -4559,6 +4980,7 @@ export type ContentBlocks_QuestionBlock_BlockTypeQuestionEntriesArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -4580,6 +5002,7 @@ export type ContentBlocks_QuestionBlock_BlockTypeQuestionEntriesArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -4607,8 +5030,8 @@ export type ContentBlocks_QuestionBlock_BlockTypeQuestionEntriesArgs = { withStructure?: InputMaybe; }; -export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_scatterplotTool_BlockType'; +export type ContentBlocks_ReferenceModalBlock_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_referenceModalBlock_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ @@ -4629,7 +5052,7 @@ export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBloc level?: Maybe; /** The ID of the primary owner of the Neo block. */ primaryOwnerId?: Maybe; - scatterplotItems: Array>; + referenceModalEntries: Array>; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -4644,7 +5067,6 @@ export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBloc sortOrder?: Maybe; /** The element’s status. */ status?: Maybe; - text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ @@ -4657,30 +5079,53 @@ export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBloc uid?: Maybe; /** The element’s URI. */ uri?: Maybe; - xAxisLabel?: Maybe; - xAxisMin?: Maybe; - yAxisLabel?: Maybe; - yAxisMax?: Maybe; }; -export type ContentBlocks_ScatterplotTool_BlockType_CountArgs = { +export type ContentBlocks_ReferenceModalBlock_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_ScatterplotTool_BlockTypeScatterplotItemsArgs = { +export type ContentBlocks_ReferenceModalBlock_BlockTypeReferenceModalEntriesArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; - fieldId?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; - primaryOwnerId?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -4690,31 +5135,34 @@ export type ContentBlocks_ScatterplotTool_BlockTypeScatterplotItemsArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; }; -export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_table_BlockType'; +export type ContentBlocks_ScatterplotTool_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_scatterplotTool_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ archived?: Maybe; - caption?: Maybe; - contentHeading?: Maybe; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ dateUpdated?: Maybe; - displayTable: Array>; /** Whether the element is enabled. */ enabled?: Maybe; /** The ID of the field that owns the Neo block. */ @@ -4727,6 +5175,7 @@ export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface level?: Maybe; /** The ID of the primary owner of the Neo block. */ primaryOwnerId?: Maybe; + scatterplotItems: Array>; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -4741,6 +5190,7 @@ export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface sortOrder?: Maybe; /** The element’s status. */ status?: Maybe; + text?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ @@ -4753,15 +5203,19 @@ export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface uid?: Maybe; /** The element’s URI. */ uri?: Maybe; + xAxisLabel?: Maybe; + xAxisMin?: Maybe; + yAxisLabel?: Maybe; + yAxisMax?: Maybe; }; -export type ContentBlocks_Table_BlockType_CountArgs = { +export type ContentBlocks_ScatterplotTool_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_Table_BlockTypeDisplayTableArgs = { +export type ContentBlocks_ScatterplotTool_BlockTypeScatterplotItemsArgs = { dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; fieldId?: InputMaybe>>; @@ -4787,14 +5241,106 @@ export type ContentBlocks_Table_BlockTypeDisplayTableArgs = { siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; }; -export type ContentBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_text_BlockType'; +export type ContentBlocks_Table_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_table_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + caption?: Maybe; + contentHeading?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + displayTable: Array>; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type ContentBlocks_Table_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type ContentBlocks_Table_BlockTypeDisplayTableArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type ContentBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'contentBlocks_text_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ @@ -5272,6 +5818,7 @@ export type Homepage_Homepage_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5293,6 +5840,7 @@ export type Homepage_Homepage_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5337,6 +5885,7 @@ export type Homepage_Homepage_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5358,6 +5907,7 @@ export type Homepage_Homepage_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5437,6 +5987,7 @@ export type Homepage_Homepage_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5458,6 +6009,7 @@ export type Homepage_Homepage_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5502,6 +6054,7 @@ export type Homepage_Homepage_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5523,6 +6076,7 @@ export type Homepage_Homepage_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5567,6 +6121,7 @@ export type Homepage_Homepage_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5588,6 +6143,7 @@ export type Homepage_Homepage_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5637,6 +6193,7 @@ export type Homepage_Homepage_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5658,6 +6215,7 @@ export type Homepage_Homepage_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5702,6 +6260,7 @@ export type Homepage_Homepage_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -5723,6 +6282,7 @@ export type Homepage_Homepage_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -5807,9 +6367,11 @@ export type Images_ImageGroup_BlockType_CountArgs = { export type Images_ImageGroup_BlockTypeImagesArgs = { + availableFilters?: InputMaybe>>; dateCreated?: InputMaybe>>; dateModified?: InputMaybe; dateUpdated?: InputMaybe>>; + displayName?: InputMaybe>>; filename?: InputMaybe>>; fixedOrder?: InputMaybe; folderId?: InputMaybe>>; @@ -5982,6 +6544,7 @@ export type Investigations_Default_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6003,6 +6566,7 @@ export type Investigations_Default_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6047,6 +6611,7 @@ export type Investigations_Default_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6068,6 +6633,7 @@ export type Investigations_Default_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6147,6 +6713,7 @@ export type Investigations_Default_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6168,6 +6735,7 @@ export type Investigations_Default_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6212,6 +6780,7 @@ export type Investigations_Default_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6233,6 +6802,7 @@ export type Investigations_Default_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6277,6 +6847,7 @@ export type Investigations_Default_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6298,6 +6869,7 @@ export type Investigations_Default_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6342,6 +6914,7 @@ export type Investigations_Default_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6363,6 +6936,7 @@ export type Investigations_Default_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6407,6 +6981,7 @@ export type Investigations_Default_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6428,6 +7003,7 @@ export type Investigations_Default_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6587,6 +7163,7 @@ export type Investigations_InvestigationParent_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6608,6 +7185,7 @@ export type Investigations_InvestigationParent_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6652,6 +7230,7 @@ export type Investigations_InvestigationParent_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6673,6 +7252,7 @@ export type Investigations_InvestigationParent_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6717,6 +7297,7 @@ export type Investigations_InvestigationParent_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6738,6 +7319,7 @@ export type Investigations_InvestigationParent_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6804,6 +7386,7 @@ export type Investigations_InvestigationParent_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6825,6 +7408,7 @@ export type Investigations_InvestigationParent_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6869,6 +7453,7 @@ export type Investigations_InvestigationParent_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6890,6 +7475,7 @@ export type Investigations_InvestigationParent_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6934,6 +7520,7 @@ export type Investigations_InvestigationParent_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -6955,6 +7542,7 @@ export type Investigations_InvestigationParent_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -6999,6 +7587,7 @@ export type Investigations_InvestigationParent_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7020,6 +7609,7 @@ export type Investigations_InvestigationParent_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7178,6 +7768,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7199,6 +7790,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7243,6 +7835,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7264,6 +7857,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7308,6 +7902,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryDescendantsArgs = description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7329,6 +7924,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryDescendantsArgs = preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7373,6 +7969,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7394,6 +7991,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7438,6 +8036,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7459,6 +8058,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7503,6 +8103,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7524,6 +8125,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -7568,6 +8170,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -7589,6 +8192,7 @@ export type Investigations_InvestigationSectionBreakChild_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8118,6 +8722,7 @@ export type Pages_Pages_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8139,6 +8744,7 @@ export type Pages_Pages_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8183,6 +8789,7 @@ export type Pages_Pages_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8204,6 +8811,7 @@ export type Pages_Pages_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8283,6 +8891,7 @@ export type Pages_Pages_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8304,6 +8913,7 @@ export type Pages_Pages_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8348,6 +8958,7 @@ export type Pages_Pages_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8369,6 +8980,7 @@ export type Pages_Pages_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8413,6 +9025,7 @@ export type Pages_Pages_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8434,6 +9047,7 @@ export type Pages_Pages_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8483,6 +9097,7 @@ export type Pages_Pages_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8504,6 +9119,7 @@ export type Pages_Pages_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8548,6 +9164,7 @@ export type Pages_Pages_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8569,6 +9186,7 @@ export type Pages_Pages_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8728,6 +9346,7 @@ export type Pages_RedirectPage_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8749,6 +9368,7 @@ export type Pages_RedirectPage_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8793,6 +9413,7 @@ export type Pages_RedirectPage_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8814,6 +9435,7 @@ export type Pages_RedirectPage_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8858,6 +9480,7 @@ export type Pages_RedirectPage_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8879,6 +9502,7 @@ export type Pages_RedirectPage_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8923,6 +9547,7 @@ export type Pages_RedirectPage_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -8944,6 +9569,7 @@ export type Pages_RedirectPage_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -8988,6 +9614,7 @@ export type Pages_RedirectPage_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9009,6 +9636,7 @@ export type Pages_RedirectPage_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9053,6 +9681,7 @@ export type Pages_RedirectPage_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9074,6 +9703,7 @@ export type Pages_RedirectPage_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9118,6 +9748,7 @@ export type Pages_RedirectPage_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9139,6 +9770,7 @@ export type Pages_RedirectPage_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9241,6 +9873,7 @@ export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockTypeColorFilterToolAr description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9262,6 +9895,7 @@ export type QuestionWidgetsBlock_ColorFilterToolBlock_BlockTypeColorFilterToolAr preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9427,6 +10061,7 @@ export type Questions_Default_EntryAncestorsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9448,6 +10083,7 @@ export type Questions_Default_EntryAncestorsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9531,6 +10167,7 @@ export type Questions_Default_EntryChildrenArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9552,6 +10189,7 @@ export type Questions_Default_EntryChildrenArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9596,6 +10234,7 @@ export type Questions_Default_EntryDescendantsArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9617,6 +10256,7 @@ export type Questions_Default_EntryDescendantsArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9661,6 +10301,7 @@ export type Questions_Default_EntryLocalizedArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9682,6 +10323,7 @@ export type Questions_Default_EntryLocalizedArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9761,6 +10403,7 @@ export type Questions_Default_EntryNextArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9782,6 +10425,7 @@ export type Questions_Default_EntryNextArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9826,6 +10470,7 @@ export type Questions_Default_EntryParentArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9847,6 +10492,7 @@ export type Questions_Default_EntryParentArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9891,6 +10537,7 @@ export type Questions_Default_EntryPrevArgs = { description?: InputMaybe>>; editable?: InputMaybe; expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; hasDescendants?: InputMaybe; hasSavePoint?: InputMaybe; @@ -9912,6 +10559,7 @@ export type Questions_Default_EntryPrevArgs = { preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -9974,31 +10622,79 @@ export type Questions_Default_EntryQuestionWidgetsBlockArgs = { uri?: InputMaybe>>; }; -export type ScatterplotItems_MatrixField = ScatterplotItems_Item_BlockType; +export type ReferenceModalsSectionEntryUnion = ReferenceModals_Default_Entry; -export type ScatterplotItems_Item_BlockType = ElementInterface & MatrixBlockInterface & { - __typename?: 'scatterplotItems_item_BlockType'; +export type ReferenceModals_Default_Entry = ElementInterface & EntryInterface & { + __typename?: 'referenceModals_default_Entry'; /** Return a number of related elements for a field. */ _count?: Maybe; + /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ + ancestors: Array; /** Whether the element is archived. */ archived?: Maybe; + /** Returns the entry’s canonical ID. */ + canonicalId?: Maybe; + /** Returns the entry’s canonical UUID. */ + canonicalUid?: Maybe; + /** The entry’s children, if the section is a structure. Accepts the same arguments as the `entries` query. */ + children: Array; + contentBlocks?: Maybe>>; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ dateUpdated?: Maybe; + /** The entry’s descendants, if the section is a structure. Accepts the same arguments as the `entries` query. */ + descendants: Array; + /** The draft ID (from the `drafts` table). */ + draftId?: Maybe; + /** The name of the draft. */ + draftName?: Maybe; + /** The notes for the draft. */ + draftNotes?: Maybe; /** Whether the element is enabled. */ enabled?: Maybe; - /** The ID of the field that owns the matrix block. */ - fieldId: Scalars['Int']['output']; + /** Whether the element is enabled for the site. */ + enabledForSite?: Maybe; + /** The expiry date of the entry. */ + expiryDate?: Maybe; /** The ID of the entity */ id?: Maybe; - itemLabel?: Maybe; + /** Returns whether this is a draft. */ + isDraft?: Maybe; + /** Returns whether this is a revision. */ + isRevision?: Maybe; + /** Returns whether this is an unpublished draft. */ + isUnpublishedDraft?: Maybe; /** The language of the site element is associated with. */ language?: Maybe; - /** The ID of the primary owner of the Matrix block. */ - primaryOwnerId: Scalars['Int']['output']; + /** The element’s level within its structure */ + level?: Maybe; + /** The element’s left position within its structure. */ + lft?: Maybe; + /** The same element in other locales. */ + localized: Array; + /** Returns the next element relative to this one, from a given set of criteria. */ + next?: Maybe; + /** The entry’s parent, if the section is a structure. */ + parent?: Maybe; + /** The entry’s post date. */ + postDate?: Maybe; + /** Returns the previous element relative to this one, from a given set of criteria. */ + prev?: Maybe; + /** The revision ID (from the `revisions` table). */ + revisionId?: Maybe; + /** The revision notes (from the `revisions` table). */ + revisionNotes?: Maybe; + /** The element’s right position within its structure. */ + rgt?: Maybe; + /** The element’s structure’s root ID */ + root?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; + /** The handle of the section that contains the entry. */ + sectionHandle: Scalars['String']['output']; + /** The ID of the section that contains the entry. */ + sectionId: Scalars['Int']['output']; /** The handle of the site the element is associated with. */ siteHandle?: Maybe; /** The ID of the site the element is associated with. */ @@ -10007,178 +10703,81 @@ export type ScatterplotItems_Item_BlockType = ElementInterface & MatrixBlockInte siteSettingsId?: Maybe; /** The element’s slug. */ slug?: Maybe; - /** The sort order of the matrix block within the owner element field. */ - sortOrder?: Maybe; + /** + * Returns the entry’s canonical ID. + * @deprecated this field has been deprecated since Craft 3.7.7. Use `canonicalId` instead. + */ + sourceId?: Maybe; + /** + * Returns the entry’s canonical UUID. + * @deprecated this field has been deprecated since Craft 3.7.7. Use `canonicalUid` instead. + */ + sourceUid?: Maybe; /** The element’s status. */ status?: Maybe; + /** The element’s structure ID. */ + structureId?: Maybe; /** The element’s title. */ title?: Maybe; /** Whether the element has been soft-deleted. */ trashed?: Maybe; - /** The handle of the matrix block’s type. */ + /** The handle of the entry type that contains the entry. */ typeHandle: Scalars['String']['output']; - /** The ID of the matrix block’s type. */ + /** The ID of the entry type that contains the entry. */ typeId: Scalars['Int']['output']; /** The UID of the entity */ uid?: Maybe; /** The element’s URI. */ uri?: Maybe; - xValue?: Maybe; - yValue?: Maybe; + /** The element’s full URL */ + url?: Maybe; }; -export type ScatterplotItems_Item_BlockType_CountArgs = { +export type ReferenceModals_Default_Entry_CountArgs = { field: Scalars['String']['input']; }; -export type SiteInfo_GlobalSet = ElementInterface & GlobalSetInterface & { - __typename?: 'siteInfo_GlobalSet'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** Whether the element is archived. */ - archived?: Maybe; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The handle of the global set. */ - handle: Scalars['String']['output']; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The name of the global set. */ - name: Scalars['String']['output']; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - siteDescription?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - siteTitle?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; -}; - - -export type SiteInfo_GlobalSet_CountArgs = { - field: Scalars['String']['input']; -}; -export type SortOptions_Category = CategoryInterface & ElementInterface & { - __typename?: 'sortOptions_Category'; - /** Return a number of related elements for a field. */ - _count?: Maybe; - /** The category’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ - ancestors: Array; - /** Whether the element is archived. */ - archived?: Maybe; - /** The category’s children. */ - children: Array; - /** The date the element was created. */ - dateCreated?: Maybe; - /** The date the element was last updated. */ - dateUpdated?: Maybe; - /** The category’s descendants, if the section is a structure. Accepts the same arguments as the `entries` query. */ - descendants: Array; - /** Whether the element is enabled. */ - enabled?: Maybe; - /** The handle of the group that contains the category. */ - groupHandle: Scalars['String']['output']; - /** The ID of the group that contains the category. */ - groupId: Scalars['Int']['output']; - /** The ID of the entity */ - id?: Maybe; - /** The language of the site element is associated with. */ - language?: Maybe; - /** The element’s level within its structure */ - level?: Maybe; - /** The element’s left position within its structure. */ - lft?: Maybe; - /** The same element in other locales. */ - localized: Array; - /** Returns the next element relative to this one, from a given set of criteria. */ - next?: Maybe; - /** The category’s parent. */ - parent?: Maybe; - /** Returns the previous element relative to this one, from a given set of criteria. */ - prev?: Maybe; - /** The element’s right position within its structure. */ - rgt?: Maybe; - /** The element’s structure’s root ID */ - root?: Maybe; - /** The element’s search score, if the `search` parameter was used when querying for the element. */ - searchScore?: Maybe; - /** The handle of the site the element is associated with. */ - siteHandle?: Maybe; - /** The ID of the site the element is associated with. */ - siteId?: Maybe; - /** The unique identifier for an element-site relation. */ - siteSettingsId?: Maybe; - /** The element’s slug. */ - slug?: Maybe; - /** The element’s status. */ - status?: Maybe; - /** The element’s structure ID. */ - structureId?: Maybe; - /** The element’s title. */ - title?: Maybe; - /** Whether the element has been soft-deleted. */ - trashed?: Maybe; - /** The UID of the entity */ - uid?: Maybe; - /** The element’s URI. */ - uri?: Maybe; - /** The element’s full URL */ - url?: Maybe; -}; - - -export type SortOptions_Category_CountArgs = { - field: Scalars['String']['input']; -}; - - -export type SortOptions_CategoryAncestorsArgs = { +export type ReferenceModals_Default_EntryAncestorsArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10188,43 +10787,64 @@ export type SortOptions_CategoryAncestorsArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryChildrenArgs = { +export type ReferenceModals_Default_EntryChildrenArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10234,43 +10854,99 @@ export type SortOptions_CategoryChildrenArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryDescendantsArgs = { +export type ReferenceModals_Default_EntryContentBlocksArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + + +export type ReferenceModals_Default_EntryDescendantsArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10280,43 +10956,64 @@ export type SortOptions_CategoryDescendantsArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryLocalizedArgs = { +export type ReferenceModals_Default_EntryLocalizedArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10326,43 +11023,64 @@ export type SortOptions_CategoryLocalizedArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryNextArgs = { +export type ReferenceModals_Default_EntryNextArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10372,43 +11090,64 @@ export type SortOptions_CategoryNextArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryParentArgs = { +export type ReferenceModals_Default_EntryParentArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10418,43 +11157,64 @@ export type SortOptions_CategoryParentArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type SortOptions_CategoryPrevArgs = { +export type ReferenceModals_Default_EntryPrevArgs = { + after?: InputMaybe; ancestorDist?: InputMaybe; ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; dateCreated?: InputMaybe>>; dateUpdated?: InputMaybe>>; descendantDist?: InputMaybe; descendantOf?: InputMaybe; + description?: InputMaybe>>; editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; fixedOrder?: InputMaybe; - group?: InputMaybe>>; - groupId?: InputMaybe>>; hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; id?: InputMaybe>>; + image?: InputMaybe>>; inReverse?: InputMaybe; leaves?: InputMaybe; level?: InputMaybe; limit?: InputMaybe; + linkTo?: InputMaybe>>; nextSiblingOf?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe; + pageType?: InputMaybe>>; positionedAfter?: InputMaybe; positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; preferSites?: InputMaybe>>; prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; ref?: InputMaybe>>; relatedTo?: InputMaybe>>; relatedToAll?: InputMaybe>>; @@ -10464,27 +11224,32 @@ export type SortOptions_CategoryPrevArgs = { relatedToTags?: InputMaybe>>; relatedToUsers?: InputMaybe>>; search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; site?: InputMaybe>>; siteId?: InputMaybe>>; siteSettingsId?: InputMaybe>>; slug?: InputMaybe>>; structureId?: InputMaybe; + text?: InputMaybe>>; title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; uid?: InputMaybe>>; unique?: InputMaybe; uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; withStructure?: InputMaybe; }; -export type TableRow_MatrixField = TableRow_TableCell_BlockType; +export type ScatterplotItems_MatrixField = ScatterplotItems_Item_BlockType; -export type TableRow_TableCell_BlockType = ElementInterface & MatrixBlockInterface & { - __typename?: 'tableRow_tableCell_BlockType'; +export type ScatterplotItems_Item_BlockType = ElementInterface & MatrixBlockInterface & { + __typename?: 'scatterplotItems_item_BlockType'; /** Return a number of related elements for a field. */ _count?: Maybe; /** Whether the element is archived. */ archived?: Maybe; - cellContent?: Maybe; /** The date the element was created. */ dateCreated?: Maybe; /** The date the element was last updated. */ @@ -10495,11 +11260,11 @@ export type TableRow_TableCell_BlockType = ElementInterface & MatrixBlockInterfa fieldId: Scalars['Int']['output']; /** The ID of the entity */ id?: Maybe; + itemLabel?: Maybe; /** The language of the site element is associated with. */ language?: Maybe; /** The ID of the primary owner of the Matrix block. */ primaryOwnerId: Scalars['Int']['output']; - rowHeader?: Maybe; /** The element’s search score, if the `search` parameter was used when querying for the element. */ searchScore?: Maybe; /** The handle of the site the element is associated with. */ @@ -10526,13 +11291,1143 @@ export type TableRow_TableCell_BlockType = ElementInterface & MatrixBlockInterfa uid?: Maybe; /** The element’s URI. */ uri?: Maybe; + xValue?: Maybe; + yValue?: Maybe; }; -export type TableRow_TableCell_BlockType_CountArgs = { +export type ScatterplotItems_Item_BlockType_CountArgs = { field: Scalars['String']['input']; }; +export type SiteInfo_GlobalSet = ElementInterface & GlobalSetInterface & { + __typename?: 'siteInfo_GlobalSet'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The handle of the global set. */ + handle: Scalars['String']['output']; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The name of the global set. */ + name: Scalars['String']['output']; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + siteDescription?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + siteTitle?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type SiteInfo_GlobalSet_CountArgs = { + field: Scalars['String']['input']; +}; + +export type SortOptions_Category = CategoryInterface & ElementInterface & { + __typename?: 'sortOptions_Category'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** The category’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ + ancestors: Array; + /** Whether the element is archived. */ + archived?: Maybe; + /** The category’s children. */ + children: Array; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** The category’s descendants, if the section is a structure. Accepts the same arguments as the `entries` query. */ + descendants: Array; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The handle of the group that contains the category. */ + groupHandle: Scalars['String']['output']; + /** The ID of the group that contains the category. */ + groupId: Scalars['Int']['output']; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The element’s level within its structure */ + level?: Maybe; + /** The element’s left position within its structure. */ + lft?: Maybe; + /** The same element in other locales. */ + localized: Array; + /** Returns the next element relative to this one, from a given set of criteria. */ + next?: Maybe; + /** The category’s parent. */ + parent?: Maybe; + /** Returns the previous element relative to this one, from a given set of criteria. */ + prev?: Maybe; + /** The element’s right position within its structure. */ + rgt?: Maybe; + /** The element’s structure’s root ID */ + root?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s structure ID. */ + structureId?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; + /** The element’s full URL */ + url?: Maybe; +}; + + +export type SortOptions_Category_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type SortOptions_CategoryAncestorsArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryChildrenArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryDescendantsArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryLocalizedArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryNextArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryParentArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type SortOptions_CategoryPrevArgs = { + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + editable?: InputMaybe; + fixedOrder?: InputMaybe; + group?: InputMaybe>>; + groupId?: InputMaybe>>; + hasDescendants?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + title?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + withStructure?: InputMaybe; +}; + +export type TableRow_MatrixField = TableRow_TableCell_BlockType; + +export type TableRow_TableCell_BlockType = ElementInterface & MatrixBlockInterface & { + __typename?: 'tableRow_tableCell_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + cellContent?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the matrix block. */ + fieldId: Scalars['Int']['output']; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The ID of the primary owner of the Matrix block. */ + primaryOwnerId: Scalars['Int']['output']; + rowHeader?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the matrix block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the matrix block’s type. */ + typeHandle: Scalars['String']['output']; + /** The ID of the matrix block’s type. */ + typeId: Scalars['Int']['output']; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type TableRow_TableCell_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + +export type WidgetsSectionEntryUnion = Widgets_ColorFilterTool_Entry; + +export type Widgets_ColorFilterTool_Entry = ElementInterface & EntryInterface & { + __typename?: 'widgets_colorFilterTool_Entry'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** The entry’s ancestors, if the section is a structure. Accepts the same arguments as the `entries` query. */ + ancestors: Array; + /** Whether the element is archived. */ + archived?: Maybe; + /** Returns the entry’s canonical ID. */ + canonicalId?: Maybe; + /** Returns the entry’s canonical UUID. */ + canonicalUid?: Maybe; + /** The entry’s children, if the section is a structure. Accepts the same arguments as the `entries` query. */ + children: Array; + colorFilterToolObjects?: Maybe>>; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** The entry’s descendants, if the section is a structure. Accepts the same arguments as the `entries` query. */ + descendants: Array; + /** The draft ID (from the `drafts` table). */ + draftId?: Maybe; + /** The name of the draft. */ + draftName?: Maybe; + /** The notes for the draft. */ + draftNotes?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** Whether the element is enabled for the site. */ + enabledForSite?: Maybe; + /** The expiry date of the entry. */ + expiryDate?: Maybe; + filterColorOptions?: Maybe>>; + /** The ID of the entity */ + id?: Maybe; + /** Returns whether this is a draft. */ + isDraft?: Maybe; + /** Returns whether this is a revision. */ + isRevision?: Maybe; + /** Returns whether this is an unpublished draft. */ + isUnpublishedDraft?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The element’s level within its structure */ + level?: Maybe; + /** The element’s left position within its structure. */ + lft?: Maybe; + /** The same element in other locales. */ + localized: Array; + /** Returns the next element relative to this one, from a given set of criteria. */ + next?: Maybe; + /** The entry’s parent, if the section is a structure. */ + parent?: Maybe; + /** The entry’s post date. */ + postDate?: Maybe; + /** Returns the previous element relative to this one, from a given set of criteria. */ + prev?: Maybe; + readOnly?: Maybe; + /** The revision ID (from the `revisions` table). */ + revisionId?: Maybe; + /** The revision notes (from the `revisions` table). */ + revisionNotes?: Maybe; + /** The element’s right position within its structure. */ + rgt?: Maybe; + /** The element’s structure’s root ID */ + root?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the section that contains the entry. */ + sectionHandle: Scalars['String']['output']; + /** The ID of the section that contains the entry. */ + sectionId: Scalars['Int']['output']; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** + * Returns the entry’s canonical ID. + * @deprecated this field has been deprecated since Craft 3.7.7. Use `canonicalId` instead. + */ + sourceId?: Maybe; + /** + * Returns the entry’s canonical UUID. + * @deprecated this field has been deprecated since Craft 3.7.7. Use `canonicalUid` instead. + */ + sourceUid?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s structure ID. */ + structureId?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the entry type that contains the entry. */ + typeHandle: Scalars['String']['output']; + /** The ID of the entry type that contains the entry. */ + typeId: Scalars['Int']['output']; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; + /** The element’s full URL */ + url?: Maybe; +}; + + +export type Widgets_ColorFilterTool_Entry_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type Widgets_ColorFilterTool_EntryAncestorsArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryChildrenArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryColorFilterToolObjectsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + + +export type Widgets_ColorFilterTool_EntryDescendantsArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryFilterColorOptionsArgs = { + label?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryLocalizedArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryNextArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryParentArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + + +export type Widgets_ColorFilterTool_EntryPrevArgs = { + after?: InputMaybe; + ancestorDist?: InputMaybe; + ancestorOf?: InputMaybe; + answerType?: InputMaybe>>; + authorGroup?: InputMaybe>>; + authorGroupId?: InputMaybe>>; + authorId?: InputMaybe>>; + before?: InputMaybe; + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + descendantDist?: InputMaybe; + descendantOf?: InputMaybe; + description?: InputMaybe>>; + editable?: InputMaybe; + expiryDate?: InputMaybe>>; + filterColorOptions?: InputMaybe>>; + fixedOrder?: InputMaybe; + hasDescendants?: InputMaybe; + hasSavePoint?: InputMaybe; + hideTitle?: InputMaybe; + id?: InputMaybe>>; + image?: InputMaybe>>; + inReverse?: InputMaybe; + leaves?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + linkTo?: InputMaybe>>; + nextSiblingOf?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + pageType?: InputMaybe>>; + positionedAfter?: InputMaybe; + positionedBefore?: InputMaybe; + postDate?: InputMaybe>>; + preferSites?: InputMaybe>>; + prevSiblingOf?: InputMaybe; + questionText?: InputMaybe>>; + readOnly?: InputMaybe; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + section?: InputMaybe>>; + sectionId?: InputMaybe>>; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + structureId?: InputMaybe; + text?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; + widgetInstructions?: InputMaybe>>; + withStructure?: InputMaybe; +}; + export type StoredAnswersQueryVariables = Exact<{ userId?: InputMaybe; investigationId?: InputMaybe; diff --git a/helpers/index.ts b/helpers/index.ts index 3eccadfd..b53b2f12 100644 --- a/helpers/index.ts +++ b/helpers/index.ts @@ -6,7 +6,8 @@ * All code in here should be specific to the project. */ -import { Image, RootPage } from "@/components/shapes"; +import { RootPage } from "@/components/shapes"; +import { Image, RawImage } from "@/types/image"; import type { GlobalsQueryQuery } from "gql/public-schema/graphql"; type Categories = GlobalsQueryQuery["categories"]; @@ -51,32 +52,39 @@ export const makeCustomBreadcrumbs = ( // IMAGES export const imageShaper = ( site = "default", - data: any, + data: RawImage, className?: string -) => { - if (!data) return; - - const shapes = { - default: { - altText: data.additional.AltTextEN, - CaptionEN: data.additional.CaptionEN, - title: data.additional.TitleEN, - }, - es: { - altText: data.additional.AltTextES, - CaptionEN: data.additional.CaptionES, - title: data.additional.TitleES, - }, +): Image | undefined => { + if (!data) return undefined; + + const localeKeys = { + default: "EN", + es: "ES", }; + const key = localeKeys[site]; + + const { metadata, url, width, height } = data; + const { directUrlPreview = "", directUrlOriginal = "", preview = "" } = url; + + const urlWithoutConstraint = directUrlPreview.slice(0, -3); + const constraint = Math.max(width, height); + + const altText = metadata[`AltText${key}`]; + const caption = metadata[`Caption${key}`]; + const credit = metadata.Credit; + return { - url: data.url.directUrlPreview.slice(0, -3) + "500", - url2x: data.url.directUrlPreview, - url3x: data.url.directUrlPreview.slice(0, -3) + "2050", - width: data.width, - height: data.height, + url: `${urlWithoutConstraint}${Math.floor(constraint / 3)}`, + url2x: `${urlWithoutConstraint}${Math.floor(constraint / 2)}`, + url3x: directUrlOriginal, + thumb: preview, + width: Number(width), + height: Number(height), className, - ...shapes[site], + altText: altText === null ? undefined : altText, + caption: caption === null ? undefined : caption, + credit: credit === null ? undefined : credit, }; }; diff --git a/public/localeStrings/en/translation.json b/public/localeStrings/en/translation.json index da759167..71e6272a 100644 --- a/public/localeStrings/en/translation.json +++ b/public/localeStrings/en/translation.json @@ -281,5 +281,8 @@ "widgets": { "filter_tool": "Filter Tool", "camera_filter_tool": "Camera Filter Ranges" + }, + "image": { + "credit": "Credit: {{credit}}" } } diff --git a/types/image.d.ts b/types/image.d.ts new file mode 100644 index 00000000..b8a352bc --- /dev/null +++ b/types/image.d.ts @@ -0,0 +1,26 @@ +export interface RawImage { + url: { + directUrlPreview: string; + directUrlOriginal: string; + preview: string; + }; + width: number; + height: number; + metadata: Record; +} + +export interface Image { + altText?: string; + caption?: string; + credit?: string; + width?: number; + height?: number; + url: string; + url2x?: string; + url3x?: string; + thumb?: string; + thumb2x?: string; + className?: string; + focalPointX?: number; + focalPointY?: number; +}