From 6abb206d12515b890cb4ced498662d8b0c79a2e7 Mon Sep 17 00:00:00 2001 From: Alexandra Goff Date: Fri, 13 Oct 2023 15:21:10 -0700 Subject: [PATCH] [C] refactor out WidgetContainerBlock --- .../CameraFilterTool/CameraFilterTool.tsx | 28 +++ .../content-blocks/CameraFilterTool/index.ts | 1 + .../content-blocks/FilterTool/FilterTool.tsx | 35 +++- components/content-blocks/FilterTool/mocks.ts | 0 components/content-blocks/Image/Image.tsx | 7 +- .../InteractionGroupContainer.tsx | 15 +- .../InteractionGroupContainer/styles.ts | 9 +- components/content-blocks/Text/Text.tsx | 2 +- components/content-blocks/Text/styles.ts | 13 +- .../TwoColumnContainer/TwoColumnContainer.tsx | 9 +- .../WidgetContainer/WidgetContainer.tsx | 43 ---- .../content-blocks/WidgetContainer/index.ts | 1 - components/content-blocks/index.ts | 4 +- .../ContentBlockFactory.tsx | 19 +- .../WidgetContainer/WidgetContainer.tsx | 4 +- gql/educator-schema/graphql.ts | 114 +++++------ gql/public-schema/gql.ts | 13 +- gql/public-schema/graphql.ts | 193 ++++++++---------- gql/student-schema/graphql.ts | 114 +++++------ helpers/index.ts | 6 +- public/localeStrings/en/translation.json | 4 + theme/styles/globalStyles.js | 1 - 22 files changed, 292 insertions(+), 343 deletions(-) create mode 100644 components/content-blocks/CameraFilterTool/CameraFilterTool.tsx create mode 100644 components/content-blocks/CameraFilterTool/index.ts delete mode 100644 components/content-blocks/FilterTool/mocks.ts delete mode 100644 components/content-blocks/WidgetContainer/WidgetContainer.tsx delete mode 100644 components/content-blocks/WidgetContainer/index.ts diff --git a/components/content-blocks/CameraFilterTool/CameraFilterTool.tsx b/components/content-blocks/CameraFilterTool/CameraFilterTool.tsx new file mode 100644 index 00000000..1f6dba12 --- /dev/null +++ b/components/content-blocks/CameraFilterTool/CameraFilterTool.tsx @@ -0,0 +1,28 @@ +import { FunctionComponent } from "react"; +import { BaseContentBlockProps } from "@/components/shapes"; +import { useTranslation } from "@/lib/i18n/client"; +import WidgetContainer from "@/components/layout/WidgetContainer"; +import CameraFilterTool from "@rubin-epo/epo-widget-lib/CameraFilter"; +import withModal from "@/components/hoc/withModal/withModal"; + +const CameraFilterToolBlock: FunctionComponent = ({ + openModal, + isOpen, +}) => { + const { t } = useTranslation(); + + return ( + + + + ); +}; + +CameraFilterToolBlock.displayName = "ContentBlock.CameraFilterTool"; + +export default withModal(CameraFilterToolBlock); diff --git a/components/content-blocks/CameraFilterTool/index.ts b/components/content-blocks/CameraFilterTool/index.ts new file mode 100644 index 00000000..ffa682b5 --- /dev/null +++ b/components/content-blocks/CameraFilterTool/index.ts @@ -0,0 +1 @@ +export { default } from "./CameraFilterTool"; diff --git a/components/content-blocks/FilterTool/FilterTool.tsx b/components/content-blocks/FilterTool/FilterTool.tsx index ce6649a0..97aa1720 100644 --- a/components/content-blocks/FilterTool/FilterTool.tsx +++ b/components/content-blocks/FilterTool/FilterTool.tsx @@ -1,7 +1,10 @@ -import { useState } from "react"; -import { Container } from "@rubin-epo/epo-react-lib"; +import { FunctionComponent, useState } from "react"; import { graphql, useFragment, FragmentType } from "@/gql/public-schema"; +import { BaseContentBlockProps } from "@/components/shapes"; +import { useTranslation } from "@/lib/i18n/client"; +import WidgetContainer from "@/components/layout/WidgetContainer"; import FilterTool from "@rubin-epo/epo-widget-lib/FilterTool"; +import withModal from "@/components/hoc/withModal/withModal"; const Fragment = graphql(` fragment FilterToolBlock on contentBlocks_filterTool_BlockType { @@ -12,22 +15,38 @@ const Fragment = graphql(` } `); -export default function FilterToolBlock(props: { +interface FilterToolBlockProps extends BaseContentBlockProps { data: FragmentType; -}) { +} + +const FilterToolBlock: FunctionComponent = ({ + data, + openModal, + isOpen, +}) => { + const { t } = useTranslation(); // eslint-disable-next-line @typescript-eslint/no-unused-vars - const { preSelectedColor, readOnly } = useFragment(Fragment, props.data); + const { preSelectedColor = "none", readOnly = false } = useFragment( + Fragment, + data + ); const [selectedColor, setSelectedColor] = useState(preSelectedColor); return ( - + setSelectedColor(selection)} /> - + ); -} +}; FilterToolBlock.displayName = "ContentBlock.FilterTool"; + +export default withModal(FilterToolBlock); diff --git a/components/content-blocks/FilterTool/mocks.ts b/components/content-blocks/FilterTool/mocks.ts deleted file mode 100644 index e69de29b..00000000 diff --git a/components/content-blocks/Image/Image.tsx b/components/content-blocks/Image/Image.tsx index 455664c9..8fb52f4b 100644 --- a/components/content-blocks/Image/Image.tsx +++ b/components/content-blocks/Image/Image.tsx @@ -1,5 +1,6 @@ import { FunctionComponent } from "react"; import { graphql, useFragment, FragmentType } from "@/gql/public-schema"; +import withModal from "@/components/hoc/withModal/withModal"; import { BaseContentBlockProps } from "@/components/shapes"; import { imageShaper } from "@/helpers"; import * as Styled from "./styles"; @@ -26,10 +27,6 @@ const Fragment = graphql(` interface ImageContentBlockProps extends BaseContentBlockProps { data: FragmentType; site: string; - hasModal: boolean; - isOpen: boolean; - openModal: () => void; - closeModal: () => void; } /** @@ -68,4 +65,4 @@ const ImageContentBlock: FunctionComponent = ( ImageContentBlock.displayName = "ContentBlock.Image"; -export default ImageContentBlock; +export default withModal(ImageContentBlock); diff --git a/components/content-blocks/InteractionGroupContainer/InteractionGroupContainer.tsx b/components/content-blocks/InteractionGroupContainer/InteractionGroupContainer.tsx index 629f558d..68608feb 100644 --- a/components/content-blocks/InteractionGroupContainer/InteractionGroupContainer.tsx +++ b/components/content-blocks/InteractionGroupContainer/InteractionGroupContainer.tsx @@ -1,7 +1,6 @@ import { useTranslation } from "@/lib/i18n/client"; import { graphql, useFragment, FragmentType } from "@/gql/public-schema"; import { blockMap } from "@/components/factories/ContentBlockFactory/ContentBlockFactory"; -import withModal from "@/hoc/withModal"; import * as Styled from "./styles"; const Fragment = graphql(` @@ -12,7 +11,6 @@ const Fragment = graphql(` ...TextBlock ...ImageBlock ...QuestionsBlock - ...WidgetContainerBlock ...BarGraphToolBlock ...ColorToolBlock ...FilterToolBlock @@ -37,12 +35,8 @@ export default function InteractionGroupContainerBlock(props: { if (!Block) return null; - const isWithModal = block.__typename === "contentBlocks_image_BlockType"; - - const EnhancedBlock = isWithModal ? withModal(Block) : Block; - return ( - - {t('page.interaction')} + + {t("page.interaction")} {renderBlocks(childBlocks)} ); diff --git a/components/content-blocks/InteractionGroupContainer/styles.ts b/components/content-blocks/InteractionGroupContainer/styles.ts index 9ef0a6e5..464923c9 100644 --- a/components/content-blocks/InteractionGroupContainer/styles.ts +++ b/components/content-blocks/InteractionGroupContainer/styles.ts @@ -1,15 +1,14 @@ import styled from "styled-components"; -import { green20 } from "@/styles/globalStyles"; import { fluidScale } from "@rubin-epo/epo-react-lib/styles"; export const Heading = styled.h2` - padding-block-end: ${fluidScale("57px", "47px")}; + margin-block-end: ${fluidScale("2em", "1.5em")}; `; export const InteractionGroup = styled.div` - padding: ${fluidScale("40px", "30px")}; - background-color: ${green20}; + padding: ${fluidScale("2em", "1.5em")}; + background-color: #e6ffe6; > section + section { - margin-top: 30px; + margin-top: 1.5em; } `; diff --git a/components/content-blocks/Text/Text.tsx b/components/content-blocks/Text/Text.tsx index 7f4308a6..d25356fb 100644 --- a/components/content-blocks/Text/Text.tsx +++ b/components/content-blocks/Text/Text.tsx @@ -25,7 +25,7 @@ const TextContentBlock: FunctionComponent = (props) => { ); diff --git a/components/content-blocks/Text/styles.ts b/components/content-blocks/Text/styles.ts index 5c602092..6c57cdc9 100644 --- a/components/content-blocks/Text/styles.ts +++ b/components/content-blocks/Text/styles.ts @@ -1,20 +1,15 @@ import { ptToEm, fluidScale } from "@rubin-epo/epo-react-lib/styles"; -import styled, { css } from "styled-components"; +import styled from "styled-components"; export const Container = styled.section` display: block; `; -export const TextContent = styled.div<{ $darkMode?: boolean }>` - ${({ $darkMode = false }) => - $darkMode - ? css` - color: var(--white, #fff); - ` - : ""} +export const TextContent = styled.div` + color: var(--text-color); > * + * { - margin-block-start: 1rem; + margin-block-start: 1em; } > *:first-child { diff --git a/components/content-blocks/TwoColumnContainer/TwoColumnContainer.tsx b/components/content-blocks/TwoColumnContainer/TwoColumnContainer.tsx index 57ed1c95..70896d36 100644 --- a/components/content-blocks/TwoColumnContainer/TwoColumnContainer.tsx +++ b/components/content-blocks/TwoColumnContainer/TwoColumnContainer.tsx @@ -1,6 +1,5 @@ import { graphql, useFragment, FragmentType } from "@/gql/public-schema"; import { blockMap } from "@/components/factories/ContentBlockFactory/ContentBlockFactory"; -import withModal from "@/hoc/withModal"; import * as Styled from "./styles"; const Fragment = graphql(` @@ -63,12 +62,8 @@ export default function TwoColumnContainerBlock(props: { if (!Block) return null; - const isWithModal = block.__typename === "contentBlocks_image_BlockType"; - - const EnhancedBlock = isWithModal ? withModal(Block) : Block; - return ( - + {leftCol && ( {renderBlocks(leftCol?.childblocks)} )} diff --git a/components/content-blocks/WidgetContainer/WidgetContainer.tsx b/components/content-blocks/WidgetContainer/WidgetContainer.tsx deleted file mode 100644 index 0f4ae5a9..00000000 --- a/components/content-blocks/WidgetContainer/WidgetContainer.tsx +++ /dev/null @@ -1,43 +0,0 @@ -import { Container } from "@rubin-epo/epo-react-lib"; -import { graphql, useFragment, FragmentType } from "@/gql/public-schema"; -import { blockMap } from "@/components/factories/ContentBlockFactory/ContentBlockFactory"; - -const Fragment = graphql(` - fragment WidgetContainerBlock on contentBlocks_widgetContainer_BlockType { - childBlocks: children { - __typename - id - ...BarGraphToolBlock - ...ScatterplotToolBlock - } - } -`); - -export default function WidgetContainerBlock(props: { - data: FragmentType; -}) { - const data = useFragment(Fragment, props.data); - - return ( - -
-        {`{ "__typename": "${data.__typename}" }`}
-      
- {!!data.childBlocks?.length && ( - <> - {data.childBlocks.map((block) => { - if (!block) return null; - - const Block = blockMap[block.__typename]; - - if (!Block) return null; - - return ; - })} - - )} -
- ); -} - -WidgetContainerBlock.displayName = "ContentBlock.WidgetContainer"; diff --git a/components/content-blocks/WidgetContainer/index.ts b/components/content-blocks/WidgetContainer/index.ts deleted file mode 100644 index f39fe531..00000000 --- a/components/content-blocks/WidgetContainer/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { default } from "./WidgetContainer"; diff --git a/components/content-blocks/index.ts b/components/content-blocks/index.ts index bedc99b7..56b2171e 100644 --- a/components/content-blocks/index.ts +++ b/components/content-blocks/index.ts @@ -1,12 +1,10 @@ -// import Modal from "./Modal"; - export { default as TwoColumnContainer } from "./TwoColumnContainer"; export { default as InteractionGroupContainer } from "./InteractionGroupContainer"; export { default as Text } from "./Text"; export { default as Image } from "./Image"; export { default as Questions } from "./Questions"; -export { default as WidgetContainer } from "./WidgetContainer"; export { default as BarGraphTool } from "./BarGraphTool"; export { default as ColorTool } from "./ColorTool"; export { default as FilterTool } from "./FilterTool"; export { default as ScatterplotTool } from "./ScatterplotTool"; +export { default as CameraFilterTool } from "./CameraFilterTool"; diff --git a/components/factories/ContentBlockFactory/ContentBlockFactory.tsx b/components/factories/ContentBlockFactory/ContentBlockFactory.tsx index 89331d54..f09f1538 100644 --- a/components/factories/ContentBlockFactory/ContentBlockFactory.tsx +++ b/components/factories/ContentBlockFactory/ContentBlockFactory.tsx @@ -1,7 +1,6 @@ import { FunctionComponent } from "react"; import { graphql, useFragment, FragmentType } from "@/gql/public-schema"; import * as Blocks from "@/components/content-blocks"; -import withModal from "@/hoc/withModal"; /** content blocks that can be rendered anywhere */ export const blockMap: Record = { @@ -10,12 +9,11 @@ export const blockMap: Record = { contentBlocks_text_BlockType: Blocks.Text, contentBlocks_image_BlockType: Blocks.Image, contentBlocks_questionBlock_BlockType: Blocks.Questions, - contentBlocks_widgetContainer_BlockType: Blocks.WidgetContainer, contentBlocks_scatterplotTool_BlockType: Blocks.ScatterplotTool, contentBlocks_barGraphTool_BlockType: Blocks.BarGraphTool, contentBlocks_colorTool_BlockType: Blocks.ColorTool, contentBlocks_filterTool_BlockType: Blocks.FilterTool, - // contentBlocks_modal_BlockType: Modal, + contentBlocks_cameraFilterTool_BlockType: Blocks.CameraFilterTool, }; const Fragment = graphql(` @@ -26,7 +24,6 @@ const Fragment = graphql(` ...TextBlock ...ImageBlock ...QuestionsBlock - ...WidgetContainerBlock ...BarGraphToolBlock ...ColorToolBlock ...FilterToolBlock @@ -38,7 +35,6 @@ interface ContentBlockFactoryProps { data: FragmentType; site: string; pageId?: string; - isInModal?: boolean; } export type ContentBlockType = keyof typeof blockMap; @@ -52,18 +48,7 @@ const ContentBlockFactory: FunctionComponent = ( if (!Block) return null; - const isWithModal = - props.isInModal || data.__typename === "contentBlocks_image_BlockType"; - - const EnhancedBlock = isWithModal ? withModal(Block) : Block; - - return ( - - ); + return ; }; ContentBlockFactory.displayName = "ContentBlocks.Factory"; diff --git a/components/layout/WidgetContainer/WidgetContainer.tsx b/components/layout/WidgetContainer/WidgetContainer.tsx index 86675f93..c0031c65 100644 --- a/components/layout/WidgetContainer/WidgetContainer.tsx +++ b/components/layout/WidgetContainer/WidgetContainer.tsx @@ -39,9 +39,7 @@ const WidgetContainer: FunctionComponent< ; }; -export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorTool_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType | ContentBlocks_WidgetContainer_BlockType; +export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_CameraFilterTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorTool_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType; export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockInterface & { __typename?: 'contentBlocks_barGraphTool_BlockType'; @@ -3968,6 +3968,61 @@ export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { 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; + /** 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. */ @@ -4736,63 +4791,6 @@ export type ContentBlocks_TwoColumnContainer_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_WidgetContainer_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_widgetContainer_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_WidgetContainer_BlockType_CountArgs = { - field: Scalars['String']['input']; -}; - export type GraphBars_MatrixField = GraphBars_Bar_BlockType; export type GraphBars_Bar_BlockType = ElementInterface & MatrixBlockInterface & { diff --git a/gql/public-schema/gql.ts b/gql/public-schema/gql.ts index 7a470b26..fb8900c9 100644 --- a/gql/public-schema/gql.ts +++ b/gql/public-schema/gql.ts @@ -35,13 +35,12 @@ const documents = { "\n fragment ColorToolBlock on contentBlocks_colorTool_BlockType {\n __typename\n id\n colorToolTemplate\n readOnly\n images {\n ... on images_imageGroup_BlockType {\n __typename\n uri\n }\n }\n }\n": types.ColorToolBlockFragmentDoc, "\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 InteractionGroupContainerBlock on contentBlocks_group_BlockType {\n __typename\n childBlocks: children {\n __typename\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...WidgetContainerBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n }\n": types.InteractionGroupContainerBlockFragmentDoc, + "\n fragment InteractionGroupContainerBlock on contentBlocks_group_BlockType {\n __typename\n childBlocks: children {\n __typename\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\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, "\n fragment TextBlock on contentBlocks_text_BlockType {\n id\n text\n }\n": types.TextBlockFragmentDoc, "\n fragment TwoColumnContainerBlock on contentBlocks_twoColumnContainer_BlockType {\n columns: children {\n ... on contentBlocks_colLeft_BlockType {\n __typename\n id\n childblocks: children {\n __typename\n id\n ...ColorToolBlock\n ...FilterToolBlock\n ...TextBlock\n ...ImageBlock\n ...BarGraphToolBlock\n ...ScatterplotToolBlock\n }\n }\n ... on contentBlocks_colRight_BlockType {\n __typename\n id\n childblocks: children {\n __typename\n id\n ...ColorToolBlock\n ...FilterToolBlock\n ...TextBlock\n ...ImageBlock\n ...BarGraphToolBlock\n ...ScatterplotToolBlock\n }\n }\n }\n }\n": types.TwoColumnContainerBlockFragmentDoc, - "\n fragment WidgetContainerBlock on contentBlocks_widgetContainer_BlockType {\n childBlocks: children {\n __typename\n id\n ...BarGraphToolBlock\n ...ScatterplotToolBlock\n }\n }\n": types.WidgetContainerBlockFragmentDoc, - "\n fragment ContentBlockFactory on contentBlocks_NeoField {\n __typename\n ...TwoColumnContainerBlock\n ...InteractionGroupContainerBlock\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...WidgetContainerBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n": types.ContentBlockFactoryFragmentDoc, + "\n fragment ContentBlockFactory on contentBlocks_NeoField {\n __typename\n ...TwoColumnContainerBlock\n ...InteractionGroupContainerBlock\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n": types.ContentBlockFactoryFragmentDoc, "\n fragment QuestionFactory on questions_default_Entry {\n answerType\n answerOptions {\n ... on answerOptions_option_BlockType {\n label: optionLabel\n value: optionValue\n }\n }\n id\n questionText\n }\n": types.QuestionFactoryFragmentDoc, "\n fragment SimpleContentBlockFactory on contentBlocks_NeoField {\n __typename\n ...TextBlock\n }\n": types.SimpleContentBlockFactoryFragmentDoc, "\n fragment TemplateFactory on EntryInterface {\n __typename\n ...PageTemplate\n }\n": types.TemplateFactoryFragmentDoc, @@ -159,7 +158,7 @@ export function graphql(source: "\n fragment ImageBlock on contentBlocks_image_ /** * 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 InteractionGroupContainerBlock on contentBlocks_group_BlockType {\n __typename\n childBlocks: children {\n __typename\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...WidgetContainerBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n }\n"): (typeof documents)["\n fragment InteractionGroupContainerBlock on contentBlocks_group_BlockType {\n __typename\n childBlocks: children {\n __typename\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...WidgetContainerBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n }\n"]; +export function graphql(source: "\n fragment InteractionGroupContainerBlock on contentBlocks_group_BlockType {\n __typename\n childBlocks: children {\n __typename\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n }\n"): (typeof documents)["\n fragment InteractionGroupContainerBlock on contentBlocks_group_BlockType {\n __typename\n childBlocks: children {\n __typename\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -179,11 +178,7 @@ export function graphql(source: "\n fragment TwoColumnContainerBlock on content /** * 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 WidgetContainerBlock on contentBlocks_widgetContainer_BlockType {\n childBlocks: children {\n __typename\n id\n ...BarGraphToolBlock\n ...ScatterplotToolBlock\n }\n }\n"): (typeof documents)["\n fragment WidgetContainerBlock on contentBlocks_widgetContainer_BlockType {\n childBlocks: children {\n __typename\n id\n ...BarGraphToolBlock\n ...ScatterplotToolBlock\n }\n }\n"]; -/** - * 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 ContentBlockFactory on contentBlocks_NeoField {\n __typename\n ...TwoColumnContainerBlock\n ...InteractionGroupContainerBlock\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...WidgetContainerBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n"): (typeof documents)["\n fragment ContentBlockFactory on contentBlocks_NeoField {\n __typename\n ...TwoColumnContainerBlock\n ...InteractionGroupContainerBlock\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...WidgetContainerBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n"]; +export function graphql(source: "\n fragment ContentBlockFactory on contentBlocks_NeoField {\n __typename\n ...TwoColumnContainerBlock\n ...InteractionGroupContainerBlock\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\n }\n"): (typeof documents)["\n fragment ContentBlockFactory on contentBlocks_NeoField {\n __typename\n ...TwoColumnContainerBlock\n ...InteractionGroupContainerBlock\n ...TextBlock\n ...ImageBlock\n ...QuestionsBlock\n ...BarGraphToolBlock\n ...ColorToolBlock\n ...FilterToolBlock\n ...ScatterplotToolBlock\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 24cfad41..b126ddf6 100644 --- a/gql/public-schema/graphql.ts +++ b/gql/public-schema/graphql.ts @@ -4073,7 +4073,7 @@ export type ContentAssets_AssetWidthArgs = { width?: InputMaybe; }; -export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorTool_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType | ContentBlocks_WidgetContainer_BlockType; +export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_CameraFilterTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorTool_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType; export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockInterface & { __typename?: 'contentBlocks_barGraphTool_BlockType'; @@ -4170,6 +4170,61 @@ export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { 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; + /** 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. */ @@ -4938,63 +4993,6 @@ export type ContentBlocks_TwoColumnContainer_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_WidgetContainer_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_widgetContainer_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_WidgetContainer_BlockType_CountArgs = { - field: Scalars['String']['input']; -}; - export type GraphBars_MatrixField = GraphBars_Bar_BlockType; export type GraphBars_Bar_BlockType = ElementInterface & MatrixBlockInterface & { @@ -10009,7 +10007,7 @@ export type ImageBlockFragment = { __typename?: 'contentBlocks_image_BlockType', export type InteractionGroupContainerBlockFragment = { __typename: 'contentBlocks_group_BlockType', childBlocks?: Array<( { __typename: 'contentBlocks_barGraphTool_BlockType' } & { ' $fragmentRefs'?: { 'BarGraphToolBlockFragment': BarGraphToolBlockFragment } } - ) | { __typename: 'contentBlocks_colLeft_BlockType' } | { __typename: 'contentBlocks_colRight_BlockType' } | ( + ) | { __typename: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType' } | { __typename: 'contentBlocks_colRight_BlockType' } | ( { __typename: 'contentBlocks_colorTool_BlockType' } & { ' $fragmentRefs'?: { 'ColorToolBlockFragment': ColorToolBlockFragment } } ) | ( @@ -10027,10 +10025,7 @@ export type InteractionGroupContainerBlockFragment = { __typename: 'contentBlock ) | ( { __typename: 'contentBlocks_text_BlockType' } & { ' $fragmentRefs'?: { 'TextBlockFragment': TextBlockFragment } } - ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType' } | ( - { __typename: 'contentBlocks_widgetContainer_BlockType' } - & { ' $fragmentRefs'?: { 'WidgetContainerBlockFragment': WidgetContainerBlockFragment } } - ) | null> | null } & { ' $fragmentName'?: 'InteractionGroupContainerBlockFragment' }; + ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } & { ' $fragmentName'?: 'InteractionGroupContainerBlockFragment' }; 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 } @@ -10041,10 +10036,10 @@ export type ScatterplotToolBlockFragment = { __typename?: 'contentBlocks_scatter export type TextBlockFragment = { __typename?: 'contentBlocks_text_BlockType', id?: string | null, text?: string | null } & { ' $fragmentName'?: 'TextBlockFragment' }; -export type TwoColumnContainerBlockFragment = { __typename?: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', id?: string | null, childblocks?: Array<( +export type TwoColumnContainerBlockFragment = { __typename?: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', id?: string | null, childblocks?: Array<( { __typename: 'contentBlocks_barGraphTool_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'BarGraphToolBlockFragment': BarGraphToolBlockFragment } } - ) | { __typename: 'contentBlocks_colLeft_BlockType', id?: string | null } | { __typename: 'contentBlocks_colRight_BlockType', id?: string | null } | ( + ) | { __typename: 'contentBlocks_cameraFilterTool_BlockType', id?: string | null } | { __typename: 'contentBlocks_colLeft_BlockType', id?: string | null } | { __typename: 'contentBlocks_colRight_BlockType', id?: string | null } | ( { __typename: 'contentBlocks_colorTool_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'ColorToolBlockFragment': ColorToolBlockFragment } } ) | ( @@ -10059,10 +10054,10 @@ export type TwoColumnContainerBlockFragment = { __typename?: 'contentBlocks_twoC ) | ( { __typename: 'contentBlocks_text_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'TextBlockFragment': TextBlockFragment } } - ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'contentBlocks_widgetContainer_BlockType', id?: string | null } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', id?: string | null, childblocks?: Array<( + ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', id?: string | null, childblocks?: Array<( { __typename: 'contentBlocks_barGraphTool_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'BarGraphToolBlockFragment': BarGraphToolBlockFragment } } - ) | { __typename: 'contentBlocks_colLeft_BlockType', id?: string | null } | { __typename: 'contentBlocks_colRight_BlockType', id?: string | null } | ( + ) | { __typename: 'contentBlocks_cameraFilterTool_BlockType', id?: string | null } | { __typename: 'contentBlocks_colLeft_BlockType', id?: string | null } | { __typename: 'contentBlocks_colRight_BlockType', id?: string | null } | ( { __typename: 'contentBlocks_colorTool_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'ColorToolBlockFragment': ColorToolBlockFragment } } ) | ( @@ -10077,21 +10072,15 @@ export type TwoColumnContainerBlockFragment = { __typename?: 'contentBlocks_twoC ) | ( { __typename: 'contentBlocks_text_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'TextBlockFragment': TextBlockFragment } } - ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'contentBlocks_widgetContainer_BlockType', id?: string | null } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } & { ' $fragmentName'?: 'TwoColumnContainerBlockFragment' }; - -export type WidgetContainerBlockFragment = { __typename?: 'contentBlocks_widgetContainer_BlockType', childBlocks?: Array<( - { __typename: 'contentBlocks_barGraphTool_BlockType', id?: string | null } - & { ' $fragmentRefs'?: { 'BarGraphToolBlockFragment': BarGraphToolBlockFragment } } - ) | { __typename: 'contentBlocks_colLeft_BlockType', id?: string | null } | { __typename: 'contentBlocks_colRight_BlockType', id?: string | null } | { __typename: 'contentBlocks_colorTool_BlockType', id?: string | null } | { __typename: 'contentBlocks_filterTool_BlockType', id?: string | null } | { __typename: 'contentBlocks_group_BlockType', id?: string | null } | { __typename: 'contentBlocks_image_BlockType', id?: string | null } | { __typename: 'contentBlocks_questionBlock_BlockType', id?: string | null } | ( - { __typename: 'contentBlocks_scatterplotTool_BlockType', id?: string | null } - & { ' $fragmentRefs'?: { 'ScatterplotToolBlockFragment': ScatterplotToolBlockFragment } } - ) | { __typename: 'contentBlocks_text_BlockType', id?: string | null } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'contentBlocks_widgetContainer_BlockType', id?: string | null } | null> | null } & { ' $fragmentName'?: 'WidgetContainerBlockFragment' }; + ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } & { ' $fragmentName'?: 'TwoColumnContainerBlockFragment' }; type ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment = ( { __typename: 'contentBlocks_barGraphTool_BlockType' } & { ' $fragmentRefs'?: { 'BarGraphToolBlockFragment': BarGraphToolBlockFragment } } ) & { ' $fragmentName'?: 'ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment' }; +type ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment = { __typename: 'contentBlocks_cameraFilterTool_BlockType' } & { ' $fragmentName'?: 'ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment' }; + type ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment = { __typename: 'contentBlocks_colLeft_BlockType' } & { ' $fragmentName'?: 'ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment' }; type ContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment = { __typename: 'contentBlocks_colRight_BlockType' } & { ' $fragmentName'?: 'ContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment' }; @@ -10136,17 +10125,14 @@ type ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment = ( & { ' $fragmentRefs'?: { 'TwoColumnContainerBlockFragment': TwoColumnContainerBlockFragment } } ) & { ' $fragmentName'?: 'ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment' }; -type ContentBlockFactory_ContentBlocks_WidgetContainer_BlockType_Fragment = ( - { __typename: 'contentBlocks_widgetContainer_BlockType' } - & { ' $fragmentRefs'?: { 'WidgetContainerBlockFragment': WidgetContainerBlockFragment } } -) & { ' $fragmentName'?: 'ContentBlockFactory_ContentBlocks_WidgetContainer_BlockType_Fragment' }; - -export type ContentBlockFactoryFragment = ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColorTool_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_Text_BlockType_Fragment | ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment | ContentBlockFactory_ContentBlocks_WidgetContainer_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_ColorTool_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_Text_BlockType_Fragment | ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment; export type QuestionFactoryFragment = { __typename?: 'questions_default_Entry', answerType?: string | null, id?: string | null, questionText?: string | null, answerOptions: Array<{ __typename?: 'answerOptions_option_BlockType', label?: string | null, value?: string | null } | null> } & { ' $fragmentName'?: 'QuestionFactoryFragment' }; type SimpleContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment = { __typename: 'contentBlocks_barGraphTool_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment' }; +type SimpleContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment = { __typename: 'contentBlocks_cameraFilterTool_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment' }; + type SimpleContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment = { __typename: 'contentBlocks_colLeft_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment' }; type SimpleContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment = { __typename: 'contentBlocks_colRight_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment' }; @@ -10170,9 +10156,7 @@ type SimpleContentBlockFactory_ContentBlocks_Text_BlockType_Fragment = ( type SimpleContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment = { __typename: 'contentBlocks_twoColumnContainer_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment' }; -type SimpleContentBlockFactory_ContentBlocks_WidgetContainer_BlockType_Fragment = { __typename: 'contentBlocks_widgetContainer_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_WidgetContainer_BlockType_Fragment' }; - -export type SimpleContentBlockFactoryFragment = SimpleContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_ColorTool_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_Text_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_WidgetContainer_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_ColorTool_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_Text_BlockType_Fragment | SimpleContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment; type TemplateFactory_Homepage_Homepage_Entry_Fragment = { __typename: 'homepage_homepage_Entry' } & { ' $fragmentName'?: 'TemplateFactory_Homepage_Homepage_Entry_Fragment' }; @@ -10196,6 +10180,9 @@ export type TemplateFactoryFragment = TemplateFactory_Homepage_Homepage_Entry_Fr export type HomepageTemplateFragment = { __typename?: 'homepage_homepage_Entry', id?: string | null, title?: string | null, contentBlocks?: Array<( { __typename?: 'contentBlocks_barGraphTool_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment': ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment } } + ) | ( + { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } + & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment': ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment } } ) | ( { __typename?: 'contentBlocks_colLeft_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment': ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment } } @@ -10226,14 +10213,14 @@ export type HomepageTemplateFragment = { __typename?: 'homepage_homepage_Entry', ) | ( { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment': ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment } } - ) | ( - { __typename?: 'contentBlocks_widgetContainer_BlockType' } - & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_WidgetContainer_BlockType_Fragment': ContentBlockFactory_ContentBlocks_WidgetContainer_BlockType_Fragment } } ) | null> | null } & { ' $fragmentName'?: 'HomepageTemplateFragment' }; export type InvestigationChildPageTemplateFragment = { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, contentBlocks?: Array<( { __typename?: 'contentBlocks_barGraphTool_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment': ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment } } + ) | ( + { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } + & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment': ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment } } ) | ( { __typename?: 'contentBlocks_colLeft_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment': ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment } } @@ -10264,18 +10251,18 @@ export type InvestigationChildPageTemplateFragment = { __typename: 'investigatio ) | ( { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment': ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment } } - ) | ( - { __typename?: 'contentBlocks_widgetContainer_BlockType' } - & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_WidgetContainer_BlockType_Fragment': ContentBlockFactory_ContentBlocks_WidgetContainer_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 } | 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 } | 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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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' }> } | 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 } | 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 } | 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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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' }> } | 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 }> } & { ' $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 } | 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 } | 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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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?: '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_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_widgetContainer_BlockType' } | 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' }> } | 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 } | 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 } | 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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | 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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | 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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | 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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | 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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | 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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | 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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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?: '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_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | 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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorTool_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 } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorTool_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_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' }> } | null } & { ' $fragmentName'?: 'InvestigationSectionBreakTemplateFragment' }; export type PageTemplateFragment = { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, contentBlocks?: Array<( { __typename?: 'contentBlocks_barGraphTool_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment': ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment } } + ) | ( + { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } + & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment': ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment } } ) | ( { __typename?: 'contentBlocks_colLeft_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment': ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment } } @@ -10306,9 +10293,6 @@ export type PageTemplateFragment = { __typename?: 'pages_pages_Entry', id?: stri ) | ( { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment': ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment } } - ) | ( - { __typename?: 'contentBlocks_widgetContainer_BlockType' } - & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_WidgetContainer_BlockType_Fragment': ContentBlockFactory_ContentBlocks_WidgetContainer_BlockType_Fragment } } ) | null> | null } & { ' $fragmentName'?: 'PageTemplateFragment' }; export type AuthFragmentFragment = { __typename?: 'Auth', jwt?: string | null, jwtExpiresAt?: number | null, refreshToken?: string | null, refreshTokenExpiresAt?: number | null, user?: ( @@ -10328,23 +10312,22 @@ export const ScatterplotToolBlockFragmentDoc = {"kind":"Document","definitions": 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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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 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","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"}}]}}]} 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":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","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"}}]}}]} as unknown as DocumentNode; -export const WidgetContainerBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"WidgetContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_widgetContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"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 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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"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","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":"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":"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":"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":"WidgetContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_widgetContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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 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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","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":"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":"WidgetContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_widgetContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"WidgetContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_widgetContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"WidgetContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_widgetContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"WidgetContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_widgetContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"WidgetContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_widgetContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} 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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"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","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":"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":"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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 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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"WidgetContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_widgetContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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 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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"WidgetContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_widgetContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"ColorToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorTool_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":"colorToolTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"images_imageGroup_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"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":"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":"ColorToolBlock"}},{"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":"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":"ColorToolBlock"}},{"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":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"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","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":"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":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorToolBlock"}},{"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 893a626a..ea968731 100644 --- a/gql/student-schema/graphql.ts +++ b/gql/student-schema/graphql.ts @@ -3871,7 +3871,7 @@ export type ContentAssets_AssetWidthArgs = { width?: InputMaybe; }; -export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorTool_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType | ContentBlocks_WidgetContainer_BlockType; +export type ContentBlocks_NeoField = ContentBlocks_BarGraphTool_BlockType | ContentBlocks_CameraFilterTool_BlockType | ContentBlocks_ColLeft_BlockType | ContentBlocks_ColRight_BlockType | ContentBlocks_ColorTool_BlockType | ContentBlocks_FilterTool_BlockType | ContentBlocks_Group_BlockType | ContentBlocks_Image_BlockType | ContentBlocks_QuestionBlock_BlockType | ContentBlocks_ScatterplotTool_BlockType | ContentBlocks_Text_BlockType | ContentBlocks_TwoColumnContainer_BlockType; export type ContentBlocks_BarGraphTool_BlockType = ElementInterface & NeoBlockInterface & { __typename?: 'contentBlocks_barGraphTool_BlockType'; @@ -3968,6 +3968,61 @@ export type ContentBlocks_BarGraphTool_BlockTypeGraphBarsArgs = { 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; + /** 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. */ @@ -4736,63 +4791,6 @@ export type ContentBlocks_TwoColumnContainer_BlockType_CountArgs = { field: Scalars['String']['input']; }; -export type ContentBlocks_WidgetContainer_BlockType = ElementInterface & NeoBlockInterface & { - __typename?: 'contentBlocks_widgetContainer_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_WidgetContainer_BlockType_CountArgs = { - field: Scalars['String']['input']; -}; - export type GraphBars_MatrixField = GraphBars_Bar_BlockType; export type GraphBars_Bar_BlockType = ElementInterface & MatrixBlockInterface & { diff --git a/helpers/index.ts b/helpers/index.ts index 92ab5245..3eccadfd 100644 --- a/helpers/index.ts +++ b/helpers/index.ts @@ -49,7 +49,11 @@ export const makeCustomBreadcrumbs = ( }; // IMAGES -export const imageShaper = (site = "default", data, className) => { +export const imageShaper = ( + site = "default", + data: any, + className?: string +) => { if (!data) return; const shapes = { diff --git a/public/localeStrings/en/translation.json b/public/localeStrings/en/translation.json index 14c2ee99..0e46de0d 100644 --- a/public/localeStrings/en/translation.json +++ b/public/localeStrings/en/translation.json @@ -257,5 +257,9 @@ "congratulations_alt": "Animated image of fireworks", "finish": "Finish", "finish_alt": "Animated image displaying the message: 'Congratulations, you finished!'" + }, + "widgets": { + "filter_tool": "Filter Tool", + "camera_filter_tool": "Camera Filter Ranges" } } diff --git a/theme/styles/globalStyles.js b/theme/styles/globalStyles.js index 8d258acb..b44790d8 100644 --- a/theme/styles/globalStyles.js +++ b/theme/styles/globalStyles.js @@ -35,7 +35,6 @@ export const blue10 = tokens.blue10; export const red = tokens.red; export const red20 = tokens.red20; export const red40 = tokens.red40; -export const green20 = "#E6FFE6"; export const BREAK_HEADER_LAYOUT = tokens.BREAK_HEADER_LAYOUT; export const BREAK_DESKTOP = tokens.BREAK_DESKTOP; export const BREAK_DESKTOP_SMALL = tokens.BREAK_DESKTOP_SMALL;