diff --git a/components/content-blocks/Questions/styles.ts b/components/content-blocks/Questions/styles.ts index 3cea749b..c82aa0cb 100644 --- a/components/content-blocks/Questions/styles.ts +++ b/components/content-blocks/Questions/styles.ts @@ -16,34 +16,7 @@ export const QuestionList = styled.ol` list-style-position: inside; padding: var(--list-padding, 0); - > li { - & > * + * { - margin-block-start: var(--PADDING_SMALL, 20px); - } - } - & > li + li { margin-block-start: var(--PADDING_SMALL, 20px); } `; - -export const QuestionLabel = styled.div` - display: inline; - - ul, - ol { - list-style: inside; - - ::marker { - margin: 0; - } - } - - & > *:first-child { - display: inline; - } - - & > * + * { - margin-block-start: var(--PADDING_SMALL, 20px); - } -`; diff --git a/components/educator-schema/saveAnswersAction.ts b/components/educator-schema/saveAnswersAction.ts index b8cf4d1f..c1fa3105 100644 --- a/components/educator-schema/saveAnswersAction.ts +++ b/components/educator-schema/saveAnswersAction.ts @@ -35,7 +35,12 @@ export default async function saveAnswers( return "statusError"; } - const answerSet = Object.values(answers); + const answerSet = Object.values(answers).map(({ data, ...values }) => { + return { + data: JSON.stringify(data), + ...values, + }; + }); const { data, error } = await mutateAPI({ query: Mutation, diff --git a/components/factories/QuestionFactory/index.tsx b/components/factories/QuestionFactory/index.tsx index 35c67536..04cfc805 100644 --- a/components/factories/QuestionFactory/index.tsx +++ b/components/factories/QuestionFactory/index.tsx @@ -2,11 +2,12 @@ import { ComponentType, FunctionComponent } from "react"; import { graphql, useFragment, FragmentType } from "@/gql/public-schema"; import SimpleQuestion from "@/components/questions/SimpleQuestion"; import TabularQuestion from "@/components/questions/TabularQuestion"; +import InlineQuestion from "@/components/questions/InlineQuestion"; const Fragment = graphql(` fragment QuestionFactory on questions_default_Entry { answerType - answerOptions { + options: answerOptions { ... on answerOptions_option_BlockType { label: optionLabel value: optionValue @@ -24,6 +25,39 @@ const Fragment = graphql(` } } } + multiPartBlocks { + ... on multiPartBlocks_select_BlockType { + id + type: typeHandle + options: answerOptions { + ... on answerOptions_option_BlockType { + id + label: optionLabel + value: optionValue + } + } + } + ... on multiPartBlocks_text_BlockType { + id + type: typeHandle + } + ... on multiPartBlocks_multiselect_BlockType { + id + type: typeHandle + options: answerOptions { + ... on answerOptions_option_BlockType { + id + label: optionLabel + value: optionValue + } + } + } + ... on multiPartBlocks_readonlyText_BlockType { + id + type: typeHandle + text: questionText + } + } } `); @@ -38,6 +72,7 @@ const QUESTION_MAP: Record> = { tabular: TabularQuestion, widget: SimpleQuestion, textarea: SimpleQuestion, + multiPart: InlineQuestion, }; const QuestionFactory: FunctionComponent = ({ @@ -48,9 +83,10 @@ const QuestionFactory: FunctionComponent = ({ answerType, id, questionWidgetsBlock = [], - answerOptions, + options, questionText, widgetInstructions, + multiPartBlocks = [], } = useFragment(Fragment, props.data); if (!id || !answerType) return null; @@ -64,9 +100,10 @@ const QuestionFactory: FunctionComponent = ({ id={id} type={answerType} questionText={questionText || widgetInstructions} - options={answerOptions} + options={options} widgetConfig={questionWidgetsBlock[0] || {}} number={number} + parts={multiPartBlocks} /> ); }; diff --git a/components/factories/ReviewFactory/index.tsx b/components/factories/ReviewFactory/index.tsx index 977f260a..1f1e6df7 100644 --- a/components/factories/ReviewFactory/index.tsx +++ b/components/factories/ReviewFactory/index.tsx @@ -1,5 +1,5 @@ import { ComponentType, FunctionComponent } from "react"; -import { QuestionCategory } from "@/components/shapes/questions"; +import { QuestionCategory } from "@/types/questions"; import SimpleReview from "@/components/questions/SimpleQuestion/Review"; import InlineReview from "@/components/questions/InlineQuestion/Review"; diff --git a/components/questions/InlineQuestion/Review/Text/index.tsx b/components/questions/InlineQuestion/Review/Text/index.tsx index 7d18fdb6..ba28c72a 100644 --- a/components/questions/InlineQuestion/Review/Text/index.tsx +++ b/components/questions/InlineQuestion/Review/Text/index.tsx @@ -2,7 +2,7 @@ import { FunctionComponent } from "react"; import { useTranslation } from "react-i18next"; import * as Styled from "./styles"; -import { SelectQuestion, TextQuestion } from "@/components/shapes/questions"; +import { SelectQuestion, TextQuestion } from "@/types/questions"; const InlineText: FunctionComponent<{ value?: string; diff --git a/components/questions/InlineQuestion/Review/index.tsx b/components/questions/InlineQuestion/Review/index.tsx index a01f5732..4d9cfef0 100644 --- a/components/questions/InlineQuestion/Review/index.tsx +++ b/components/questions/InlineQuestion/Review/index.tsx @@ -1,8 +1,5 @@ import { ComponentType, FunctionComponent } from "react"; -import { - BaseReviewProps, - InlineQuestionType, -} from "@/components/shapes/questions"; +import { BaseReviewProps, InlineQuestionType } from "@/types/questions"; import * as Styled from "./styles"; import Readonly from "./Readonly"; diff --git a/components/questions/InlineQuestion/Text/index.tsx b/components/questions/InlineQuestion/Text/index.tsx index b99c3e8f..540f688f 100644 --- a/components/questions/InlineQuestion/Text/index.tsx +++ b/components/questions/InlineQuestion/Text/index.tsx @@ -11,7 +11,7 @@ interface InlineTextProps extends InlineTextPart { const InlineText: FunctionComponent = ({ onChangeCallback, isDisabled, - value, + value = "", id, }) => ( > = { - readonly: Readonly, + readonlyText: Readonly, text: Text, select: Select, multiselect: Multiselect, }; const InlineQuestion: FunctionComponent = ({ - // eslint-disable-next-line @typescript-eslint/no-unused-vars id, number, isDisabled, parts = [], }) => { - const callback = (value: string | string[], id: string) => { - console.info({ value, id }); - }; + const { answers, onChangeCallback } = useContext(StoredAnswersContext); + const storedAnswer = answers[id] || {}; + const { data = {} } = storedAnswer; return ( - {parts.map(({ id, type, ...props }) => { + {parts.map(({ id: partId, type, ...props }) => { const Input = INPUT_MAP[type]; if (!Input) { @@ -72,9 +69,18 @@ const InlineQuestion: FunctionComponent = ({ return ( + onChangeCallback && + onChangeCallback( + { ...(data as InlineQuestionData), [partId]: value }, + id, + storedAnswer?.id + ) + } + value={(data as InlineQuestionData)[partId]} + {...{ ...props, isDisabled }} /> ); })} diff --git a/components/questions/InlineQuestion/styles.ts b/components/questions/InlineQuestion/styles.ts index 7279081e..8baa1180 100644 --- a/components/questions/InlineQuestion/styles.ts +++ b/components/questions/InlineQuestion/styles.ts @@ -2,7 +2,8 @@ import styled from "styled-components"; export const InlineContainer = styled.li` - > * { - margin-inline-end: 1ch; + > * + * { + margin: 0; + margin-inline-start: 0.5ch; } `; diff --git a/components/questions/SimpleQuestion/Review/Text/index.tsx b/components/questions/SimpleQuestion/Review/Text/index.tsx index 5ca1ef3c..9159e532 100644 --- a/components/questions/SimpleQuestion/Review/Text/index.tsx +++ b/components/questions/SimpleQuestion/Review/Text/index.tsx @@ -7,7 +7,7 @@ import { SelectQuestion, TextAreaQuestion, TextQuestion, -} from "@/components/shapes/questions"; +} from "@/types/questions"; interface SimpleTextProps { value?: string; diff --git a/components/questions/SimpleQuestion/Review/index.tsx b/components/questions/SimpleQuestion/Review/index.tsx index 55f26ee8..562e9a51 100644 --- a/components/questions/SimpleQuestion/Review/index.tsx +++ b/components/questions/SimpleQuestion/Review/index.tsx @@ -1,8 +1,5 @@ import { ComponentType, FunctionComponent } from "react"; -import { - BaseReviewProps, - SimpleQuestionType, -} from "@/components/shapes/questions"; +import { BaseReviewProps, SimpleQuestionType } from "@/types/questions"; import * as Styled from "./styles"; import Text from "./Text"; diff --git a/components/questions/SimpleQuestion/index.tsx b/components/questions/SimpleQuestion/index.tsx index dffcfde5..c77ee903 100644 --- a/components/questions/SimpleQuestion/index.tsx +++ b/components/questions/SimpleQuestion/index.tsx @@ -1,10 +1,7 @@ "use client"; import { ComponentType, FunctionComponent, useContext } from "react"; -import { - BaseQuestionProps, - SimpleQuestionType, -} from "@/components/shapes/questions"; +import { BaseQuestionProps, SimpleQuestionType } from "@/types/questions"; import { Option } from "@/components/shapes/option"; import Text from "./Text"; @@ -13,7 +10,7 @@ import Select from "./Select"; import Multiselect from "./Multiselect"; import Widget from "./Widget"; import StoredAnswersContext from "@/contexts/StoredAnswersContext"; -import * as Styled from "@/components/content-blocks/Questions/styles"; +import * as Styled from "./styles"; export interface SimpleQuestionProps extends BaseQuestionProps { type: SimpleQuestionType; @@ -53,7 +50,7 @@ const SimpleQuestion: FunctionComponent = ({ } return ( -
  • + {type === "widget" ? ( = ({ widgetConfig, }} /> -
  • + ); }; diff --git a/components/questions/SimpleQuestion/styles.ts b/components/questions/SimpleQuestion/styles.ts new file mode 100644 index 00000000..e589e9df --- /dev/null +++ b/components/questions/SimpleQuestion/styles.ts @@ -0,0 +1,29 @@ +"use client"; +import styled from "styled-components"; + +export const SimpleContainer = styled.li` + & > * + * { + margin-block-start: var(--PADDING_SMALL, 20px); + } +`; + +export const QuestionLabel = styled.div` + display: inline; + + ul, + ol { + list-style: inside; + + ::marker { + margin: 0; + } + } + + & > *:first-child { + display: inline; + } + + & > * + * { + margin-block-start: var(--PADDING_SMALL, 20px); + } +`; diff --git a/components/questions/TabularQuestion/index.tsx b/components/questions/TabularQuestion/index.tsx index bc75e020..8f1c3cb2 100644 --- a/components/questions/TabularQuestion/index.tsx +++ b/components/questions/TabularQuestion/index.tsx @@ -1,10 +1,7 @@ import { FunctionComponent, ComponentType } from "react"; import Table, { TableHeader, TableRow } from "@/components/layout/Table/Table"; import { Option } from "@/components/shapes/option"; -import { - BaseQuestionProps, - TabularQuestionType, -} from "@/components/shapes/questions"; +import { BaseQuestionProps, TabularQuestionType } from "@/types/questions"; import Text from "./Text"; import Select from "./Select"; diff --git a/components/student-schema/saveAnswersAction.ts b/components/student-schema/saveAnswersAction.ts index b8cf4d1f..c1fa3105 100644 --- a/components/student-schema/saveAnswersAction.ts +++ b/components/student-schema/saveAnswersAction.ts @@ -35,7 +35,12 @@ export default async function saveAnswers( return "statusError"; } - const answerSet = Object.values(answers); + const answerSet = Object.values(answers).map(({ data, ...values }) => { + return { + data: JSON.stringify(data), + ...values, + }; + }); const { data, error } = await mutateAPI({ query: Mutation, diff --git a/contexts/StoredAnswersContext.tsx b/contexts/StoredAnswersContext.tsx index 236ce7dd..d75917b6 100644 --- a/contexts/StoredAnswersContext.tsx +++ b/contexts/StoredAnswersContext.tsx @@ -2,7 +2,7 @@ import { createContext, useCallback, useSyncExternalStore } from "react"; import { Query } from "@/gql/student-schema/graphql"; -import { Answers, InvestigationId } from "@/types/answers"; +import { AnswerData, Answers, InvestigationId } from "@/types/answers"; function setLocalStorage(investigationId: InvestigationId, answers: Answers) { if (!investigationId) return; @@ -16,7 +16,7 @@ function setLocalStorage(investigationId: InvestigationId, answers: Answers) { const StoredAnswersContext = createContext<{ answers: Answers; onChangeCallback?: ( - data: string, + data: AnswerData, questionId: string, answerId?: string | null ) => void; @@ -59,7 +59,7 @@ function StoredAnswersProvider(props: { const answers = (JSON.parse(storedAnswers) as Answers) ?? {}; const onChangeCallback = useCallback( - (data: string, questionId: string, answerId?: string | null) => { + (data: AnswerData, questionId: string, answerId?: string | null) => { const prevAnswers = (JSON.parse(getSnapshot()) as Answers) ?? {}; const newAnswers = Object.assign({}, prevAnswers, { [questionId]: { diff --git a/gql/educator-schema/graphql.ts b/gql/educator-schema/graphql.ts index 25875490..8917ed61 100644 --- a/gql/educator-schema/graphql.ts +++ b/gql/educator-schema/graphql.ts @@ -7884,6 +7884,299 @@ export type LinkField_Link = { url?: Maybe; }; +export type MultiPartBlocks_NeoField = MultiPartBlocks_Multiselect_BlockType | MultiPartBlocks_ReadonlyText_BlockType | MultiPartBlocks_Select_BlockType | MultiPartBlocks_Text_BlockType; + +export type MultiPartBlocks_Multiselect_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_multiselect_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + answerOptions: Array>; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Multiselect_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type MultiPartBlocks_Multiselect_BlockTypeAnswerOptionsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type MultiPartBlocks_ReadonlyText_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_readonlyText_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + questionText?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_ReadonlyText_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + +export type MultiPartBlocks_Select_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_select_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + answerOptions: Array>; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Select_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type MultiPartBlocks_Select_BlockTypeAnswerOptionsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type MultiPartBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_text_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Text_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + export type Objects_Object_BlockType = ElementInterface & MatrixBlockInterface & { __typename?: 'objects_object_BlockType'; /** Return a number of related elements for a field. */ @@ -9303,6 +9596,7 @@ export type Questions_Default_Entry = ElementInterface & EntryInterface & { lft?: Maybe; /** The same element in other locales. */ localized: Array; + multiPartBlocks?: Maybe>>; /** Returns the next element relative to this one, from a given set of criteria. */ next?: Maybe; /** The entry’s parent, if the section is a structure. */ @@ -9671,6 +9965,41 @@ export type Questions_Default_EntryLocalizedArgs = { }; +export type Questions_Default_EntryMultiPartBlocksArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + + export type Questions_Default_EntryNextArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; diff --git a/gql/public-schema/gql.ts b/gql/public-schema/gql.ts index 698bf5c9..26d1e51a 100644 --- a/gql/public-schema/gql.ts +++ b/gql/public-schema/gql.ts @@ -42,7 +42,7 @@ const documents = { "\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 ...FilterToolBlock\n ...TextBlock\n ...ImageBlock\n ...TableBlock\n ...BarGraphToolBlock\n ...ScatterplotToolBlock\n }\n }\n ... on contentBlocks_colRight_BlockType {\n __typename\n id\n childblocks: children {\n __typename\n id\n ...FilterToolBlock\n ...TextBlock\n ...ImageBlock\n ...TableBlock\n ...BarGraphToolBlock\n ...ScatterplotToolBlock\n }\n }\n }\n }\n": types.TwoColumnContainerBlockFragmentDoc, "\n fragment ContentBlockFactory on contentBlocks_NeoField {\n __typename\n ...TwoColumnContainerBlock\n ...InteractionGroupContainerBlock\n ...TextBlock\n ...ImageBlock\n ...TableBlock\n ...QuestionsBlock\n ...BarGraphToolBlock\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 widgetInstructions\n questionWidgetsBlock {\n __typename\n ... on questionWidgetsBlock_colorFilterToolBlock_BlockType {\n typeHandle\n colorFilterTool {\n ...ColorFilterToolBlock\n }\n }\n }\n }\n": types.QuestionFactoryFragmentDoc, + "\n fragment QuestionFactory on questions_default_Entry {\n answerType\n options: answerOptions {\n ... on answerOptions_option_BlockType {\n label: optionLabel\n value: optionValue\n }\n }\n id\n questionText\n widgetInstructions\n questionWidgetsBlock {\n __typename\n ... on questionWidgetsBlock_colorFilterToolBlock_BlockType {\n typeHandle\n colorFilterTool {\n ...ColorFilterToolBlock\n }\n }\n }\n multiPartBlocks {\n ... on multiPartBlocks_select_BlockType {\n id\n type: typeHandle\n options: answerOptions {\n ... on answerOptions_option_BlockType {\n id\n label: optionLabel\n value: optionValue\n }\n }\n }\n ... on multiPartBlocks_text_BlockType {\n id\n type: typeHandle\n }\n ... on multiPartBlocks_multiselect_BlockType {\n id\n type: typeHandle\n options: answerOptions {\n ... on answerOptions_option_BlockType {\n id\n label: optionLabel\n value: optionValue\n }\n }\n }\n ... on multiPartBlocks_readonlyText_BlockType {\n id\n type: typeHandle\n text: questionText\n }\n }\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, "\n fragment HomepageTemplate on homepage_homepage_Entry {\n id\n title\n contentBlocks {\n ...ContentBlockFactory\n }\n }\n": types.HomepageTemplateFragmentDoc, @@ -187,7 +187,7 @@ export function graphql(source: "\n fragment ContentBlockFactory on contentBloc /** * 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 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 widgetInstructions\n questionWidgetsBlock {\n __typename\n ... on questionWidgetsBlock_colorFilterToolBlock_BlockType {\n typeHandle\n colorFilterTool {\n ...ColorFilterToolBlock\n }\n }\n }\n }\n"): (typeof documents)["\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 widgetInstructions\n questionWidgetsBlock {\n __typename\n ... on questionWidgetsBlock_colorFilterToolBlock_BlockType {\n typeHandle\n colorFilterTool {\n ...ColorFilterToolBlock\n }\n }\n }\n }\n"]; +export function graphql(source: "\n fragment QuestionFactory on questions_default_Entry {\n answerType\n options: answerOptions {\n ... on answerOptions_option_BlockType {\n label: optionLabel\n value: optionValue\n }\n }\n id\n questionText\n widgetInstructions\n questionWidgetsBlock {\n __typename\n ... on questionWidgetsBlock_colorFilterToolBlock_BlockType {\n typeHandle\n colorFilterTool {\n ...ColorFilterToolBlock\n }\n }\n }\n multiPartBlocks {\n ... on multiPartBlocks_select_BlockType {\n id\n type: typeHandle\n options: answerOptions {\n ... on answerOptions_option_BlockType {\n id\n label: optionLabel\n value: optionValue\n }\n }\n }\n ... on multiPartBlocks_text_BlockType {\n id\n type: typeHandle\n }\n ... on multiPartBlocks_multiselect_BlockType {\n id\n type: typeHandle\n options: answerOptions {\n ... on answerOptions_option_BlockType {\n id\n label: optionLabel\n value: optionValue\n }\n }\n }\n ... on multiPartBlocks_readonlyText_BlockType {\n id\n type: typeHandle\n text: questionText\n }\n }\n }\n"): (typeof documents)["\n fragment QuestionFactory on questions_default_Entry {\n answerType\n options: answerOptions {\n ... on answerOptions_option_BlockType {\n label: optionLabel\n value: optionValue\n }\n }\n id\n questionText\n widgetInstructions\n questionWidgetsBlock {\n __typename\n ... on questionWidgetsBlock_colorFilterToolBlock_BlockType {\n typeHandle\n colorFilterTool {\n ...ColorFilterToolBlock\n }\n }\n }\n multiPartBlocks {\n ... on multiPartBlocks_select_BlockType {\n id\n type: typeHandle\n options: answerOptions {\n ... on answerOptions_option_BlockType {\n id\n label: optionLabel\n value: optionValue\n }\n }\n }\n ... on multiPartBlocks_text_BlockType {\n id\n type: typeHandle\n }\n ... on multiPartBlocks_multiselect_BlockType {\n id\n type: typeHandle\n options: answerOptions {\n ... on answerOptions_option_BlockType {\n id\n label: optionLabel\n value: optionValue\n }\n }\n }\n ... on multiPartBlocks_readonlyText_BlockType {\n id\n type: typeHandle\n text: questionText\n }\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ diff --git a/gql/public-schema/graphql.ts b/gql/public-schema/graphql.ts index 89573268..615fd36e 100644 --- a/gql/public-schema/graphql.ts +++ b/gql/public-schema/graphql.ts @@ -8261,6 +8261,299 @@ export type LinkField_Link = { url?: Maybe; }; +export type MultiPartBlocks_NeoField = MultiPartBlocks_Multiselect_BlockType | MultiPartBlocks_ReadonlyText_BlockType | MultiPartBlocks_Select_BlockType | MultiPartBlocks_Text_BlockType; + +export type MultiPartBlocks_Multiselect_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_multiselect_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + answerOptions: Array>; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Multiselect_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type MultiPartBlocks_Multiselect_BlockTypeAnswerOptionsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type MultiPartBlocks_ReadonlyText_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_readonlyText_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + questionText?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_ReadonlyText_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + +export type MultiPartBlocks_Select_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_select_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + answerOptions: Array>; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Select_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type MultiPartBlocks_Select_BlockTypeAnswerOptionsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type MultiPartBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_text_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Text_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + export type Objects_Object_BlockType = ElementInterface & MatrixBlockInterface & { __typename?: 'objects_object_BlockType'; /** Return a number of related elements for a field. */ @@ -9722,6 +10015,7 @@ export type Questions_Default_Entry = ElementInterface & EntryInterface & { lft?: Maybe; /** The same element in other locales. */ localized: Array; + multiPartBlocks?: Maybe>>; /** Returns the next element relative to this one, from a given set of criteria. */ next?: Maybe; /** The entry’s parent, if the section is a structure. */ @@ -10098,6 +10392,41 @@ export type Questions_Default_EntryLocalizedArgs = { }; +export type Questions_Default_EntryMultiPartBlocksArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + + export type Questions_Default_EntryNextArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; @@ -12285,7 +12614,7 @@ export type RefreshTokenMutation = { __typename?: 'Mutation', refreshToken: ( export type BarGraphToolBlockFragment = { __typename: 'contentBlocks_barGraphTool_BlockType', id?: string | null, title?: string | null, yAxisMin?: any | null, yAxisMax?: any | null, yAxisLabel?: string | null, xAxisLabel?: string | null, graphBars: Array<{ __typename: 'graphBars_bar_BlockType', yValue?: string | null, label?: string | null } | null> } & { ' $fragmentName'?: 'BarGraphToolBlockFragment' }; -export type ColorFilterToolBlockFragment = { __typename?: 'widgets_colorFilterTool_Entry', title?: string | null, filterColorOptionsLabels?: Array | null, filterColorOptionsValues?: Array | null, colorFilterToolObjects?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType', groupName?: string | null, objects?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType', objectName?: string | null, objectCaption?: string | null, filterImages?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType', isEnabled?: boolean | null, isActive?: boolean | null, max?: any | null, min?: any | null, defaultValue?: any | null, label?: string | null, color?: string | null, image?: Array | null } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | null> | null } & { ' $fragmentName'?: 'ColorFilterToolBlockFragment' }; +export type ColorFilterToolBlockFragment = { __typename?: 'widgets_colorFilterTool_Entry', title?: string | null, filterColorOptionsLabels?: Array | null, filterColorOptionsValues?: Array | null, colorFilterToolObjects?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType', groupName?: string | null, objects?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType', objectName?: string | null, objectCaption?: string | null, filterImages?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType', isEnabled?: boolean | null, isActive?: boolean | null, max?: any | null, min?: any | null, defaultValue?: any | null, label?: string | null, color?: string | null, image?: Array | null } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | null> | null } & { ' $fragmentName'?: 'ColorFilterToolBlockFragment' }; export type FilterToolBlockFragment = { __typename: 'contentBlocks_filterTool_BlockType', id?: string | null, preSelectedColor?: string | null, readOnly?: boolean | null } & { ' $fragmentName'?: 'FilterToolBlockFragment' }; @@ -12312,7 +12641,7 @@ export type InteractionGroupContainerBlockFragment = { __typename: 'contentBlock ) | ( { __typename: 'contentBlocks_text_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'TextBlockFragment': TextBlockFragment } } - ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', id?: string | null } | null> | null } & { ' $fragmentName'?: 'InteractionGroupContainerBlockFragment' }; + ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_multiselect_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_readonlyText_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_select_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_text_BlockType', id?: string | null } | { __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', id?: string | null } | null> | null } & { ' $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 } @@ -12343,7 +12672,7 @@ export type TwoColumnContainerBlockFragment = { __typename?: 'contentBlocks_twoC ) | ( { __typename: 'contentBlocks_text_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'TextBlockFragment': TextBlockFragment } } - ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', id?: string | null } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', id?: string | null, childblocks?: Array<{ __typename: 'colorFilterToolObjects_filterimage_BlockType', id?: string | null } | { __typename: 'colorFilterToolObjects_group_BlockType', id?: string | null } | { __typename: 'colorFilterToolObjects_object_BlockType', id?: string | null } | ( + ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_multiselect_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_readonlyText_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_select_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_text_BlockType', id?: string | null } | { __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', id?: string | null } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', id?: string | null, childblocks?: Array<{ __typename: 'colorFilterToolObjects_filterimage_BlockType', id?: string | null } | { __typename: 'colorFilterToolObjects_group_BlockType', id?: string | null } | { __typename: 'colorFilterToolObjects_object_BlockType', id?: string | null } | ( { __typename: 'contentBlocks_barGraphTool_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'BarGraphToolBlockFragment': BarGraphToolBlockFragment } } ) | { __typename: 'contentBlocks_cameraFilterTool_BlockType', id?: string | null } | { __typename: 'contentBlocks_colLeft_BlockType', id?: string | null } | { __typename: 'contentBlocks_colRight_BlockType', id?: string | null } | { __typename: 'contentBlocks_colorFilterToolBlock_BlockType', id?: string | null } | ( @@ -12361,7 +12690,7 @@ export type TwoColumnContainerBlockFragment = { __typename?: 'contentBlocks_twoC ) | ( { __typename: 'contentBlocks_text_BlockType', id?: string | null } & { ' $fragmentRefs'?: { 'TextBlockFragment': TextBlockFragment } } - ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', id?: string | null } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } & { ' $fragmentName'?: 'TwoColumnContainerBlockFragment' }; + ) | { __typename: 'contentBlocks_twoColumnContainer_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_multiselect_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_readonlyText_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_select_BlockType', id?: string | null } | { __typename: 'multiPartBlocks_text_BlockType', id?: string | null } | { __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', id?: string | null } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } & { ' $fragmentName'?: 'TwoColumnContainerBlockFragment' }; type ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment = ( { __typename: 'contentBlocks_barGraphTool_BlockType' } @@ -12418,10 +12747,10 @@ type ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment = ( export type ContentBlockFactoryFragment = ContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_CameraFilterTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColLeft_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColRight_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ColorFilterToolBlock_BlockType_Fragment | ContentBlockFactory_ContentBlocks_FilterTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Group_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Image_BlockType_Fragment | ContentBlockFactory_ContentBlocks_QuestionBlock_BlockType_Fragment | ContentBlockFactory_ContentBlocks_ScatterplotTool_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Table_BlockType_Fragment | ContentBlockFactory_ContentBlocks_Text_BlockType_Fragment | ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment; -export type QuestionFactoryFragment = { __typename?: 'questions_default_Entry', answerType?: string | null, id?: string | null, questionText?: string | null, widgetInstructions?: string | null, answerOptions: Array<{ __typename?: 'answerOptions_option_BlockType', label?: string | null, value?: string | null } | null>, questionWidgetsBlock?: Array<{ __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', typeHandle?: string | null, colorFilterTool: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | ( +export type QuestionFactoryFragment = { __typename?: 'questions_default_Entry', answerType?: string | null, id?: string | null, questionText?: string | null, widgetInstructions?: string | null, options: Array<{ __typename?: 'answerOptions_option_BlockType', label?: string | null, value?: string | null } | null>, questionWidgetsBlock?: Array<{ __typename: 'questionWidgetsBlock_colorFilterToolBlock_BlockType', typeHandle?: string | null, colorFilterTool: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | ( { __typename?: 'widgets_colorFilterTool_Entry' } & { ' $fragmentRefs'?: { 'ColorFilterToolBlockFragment': ColorFilterToolBlockFragment } } - ) | null> } | null> | null } & { ' $fragmentName'?: 'QuestionFactoryFragment' }; + ) | null> } | null> | null, multiPartBlocks?: Array<{ __typename?: 'multiPartBlocks_multiselect_BlockType', id?: string | null, type?: string | null, options: Array<{ __typename?: 'answerOptions_option_BlockType', id?: string | null, label?: string | null, value?: string | null } | null> } | { __typename?: 'multiPartBlocks_readonlyText_BlockType', id?: string | null, type?: string | null, text?: string | null } | { __typename?: 'multiPartBlocks_select_BlockType', id?: string | null, type?: string | null, options: Array<{ __typename?: 'answerOptions_option_BlockType', id?: string | null, label?: string | null, value?: string | null } | null> } | { __typename?: 'multiPartBlocks_text_BlockType', id?: string | null, type?: string | null } | null> | null } & { ' $fragmentName'?: 'QuestionFactoryFragment' }; type SimpleContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment = { __typename: 'contentBlocks_barGraphTool_BlockType' } & { ' $fragmentName'?: 'SimpleContentBlockFactory_ContentBlocks_BarGraphTool_BlockType_Fragment' }; @@ -12557,11 +12886,11 @@ export type InvestigationChildPageTemplateFragment = { __typename: 'investigatio ) | ( { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } & { ' $fragmentRefs'?: { 'ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment': ContentBlockFactory_ContentBlocks_TwoColumnContainer_BlockType_Fragment } } - ) | null> | null, prev?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, next?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, parent?: { __typename?: 'homepage_homepage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_pages_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'questions_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | null } & { ' $fragmentName'?: 'InvestigationChildPageTemplateFragment' }; + ) | null> | null, prev?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, next?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, parent?: { __typename?: 'homepage_homepage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_pages_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'questions_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | null } & { ' $fragmentName'?: 'InvestigationChildPageTemplateFragment' }; export type InvestigationLandingPageTemplateFragment = { __typename?: 'investigations_investigationParent_Entry', title?: string | null, image?: Array | null, children: Array<{ __typename?: 'homepage_homepage_Entry', uri?: string | null } | { __typename?: 'investigations_default_Entry', uri?: string | null } | { __typename?: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename?: 'pages_pages_Entry', uri?: string | null } | { __typename?: 'pages_redirectPage_Entry', uri?: string | null } | { __typename?: 'questions_default_Entry', uri?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename?: 'widgets_colorFilterTool_Entry', uri?: string | null }> } & { ' $fragmentName'?: 'InvestigationLandingPageTemplateFragment' }; -export type InvestigationSectionBreakTemplateFragment = { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, text?: string | null, prev?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, next?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, parent?: { __typename?: 'homepage_homepage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_pages_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'questions_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | null } & { ' $fragmentName'?: 'InvestigationSectionBreakTemplateFragment' }; +export type InvestigationSectionBreakTemplateFragment = { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, text?: string | null, prev?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, next?: { __typename: 'homepage_homepage_Entry', uri?: string | null } | { __typename: 'investigations_default_Entry', uri?: string | null } | { __typename: 'investigations_investigationParent_Entry', uri?: string | null } | { __typename: 'investigations_investigationSectionBreakChild_Entry', uri?: string | null } | { __typename: 'pages_pages_Entry', uri?: string | null } | { __typename: 'pages_redirectPage_Entry', uri?: string | null } | { __typename: 'questions_default_Entry', uri?: string | null } | { __typename: 'widgets_cameraFilterTool_Entry', uri?: string | null } | { __typename: 'widgets_colorFilterTool_Entry', uri?: string | null } | null, parent?: { __typename?: 'homepage_homepage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationParent_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_pages_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'pages_redirectPage_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'questions_default_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_cameraFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | { __typename?: 'widgets_colorFilterTool_Entry', id?: string | null, children: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename: 'investigations_default_Entry', id?: string | null, title?: string | null, hasSavePoint?: boolean | null, uri?: string | null, contentBlocks?: Array<{ __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename: 'contentBlocks_group_BlockType', group?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename: 'contentBlocks_twoColumnContainer_BlockType', columns?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename: 'contentBlocks_colLeft_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename: 'contentBlocks_colRight_BlockType', children?: Array<{ __typename?: 'colorFilterToolObjects_filterimage_BlockType' } | { __typename?: 'colorFilterToolObjects_group_BlockType' } | { __typename?: 'colorFilterToolObjects_object_BlockType' } | { __typename?: 'contentBlocks_barGraphTool_BlockType' } | { __typename?: 'contentBlocks_cameraFilterTool_BlockType' } | { __typename?: 'contentBlocks_colLeft_BlockType' } | { __typename?: 'contentBlocks_colRight_BlockType' } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename: 'contentBlocks_questionBlock_BlockType', questionEntries: Array<{ __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry', id?: string | null } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | null> } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | { __typename?: 'contentBlocks_colorFilterToolBlock_BlockType' } | { __typename?: 'contentBlocks_filterTool_BlockType' } | { __typename?: 'contentBlocks_group_BlockType' } | { __typename?: 'contentBlocks_image_BlockType' } | { __typename?: 'contentBlocks_questionBlock_BlockType' } | { __typename?: 'contentBlocks_scatterplotTool_BlockType' } | { __typename?: 'contentBlocks_table_BlockType' } | { __typename?: 'contentBlocks_text_BlockType' } | { __typename?: 'contentBlocks_twoColumnContainer_BlockType' } | { __typename?: 'multiPartBlocks_multiselect_BlockType' } | { __typename?: 'multiPartBlocks_readonlyText_BlockType' } | { __typename?: 'multiPartBlocks_select_BlockType' } | { __typename?: 'multiPartBlocks_text_BlockType' } | { __typename?: 'questionWidgetsBlock_colorFilterToolBlock_BlockType' } | null> | null } | null> | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename: 'investigations_investigationSectionBreakChild_Entry', id?: string | null, title?: string | null, uri?: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'widgets_cameraFilterTool_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' }> } | null } & { ' $fragmentName'?: 'InvestigationSectionBreakTemplateFragment' }; export type PageTemplateFragment = { __typename?: 'pages_pages_Entry', id?: string | null, title?: string | null, contentBlocks?: Array<( { __typename?: 'contentBlocks_barGraphTool_BlockType' } @@ -12620,24 +12949,24 @@ export const BarGraphToolBlockFragmentDoc = {"kind":"Document","definitions":[{" export const ScatterplotToolBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}}]} as unknown as DocumentNode; export const TwoColumnContainerBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}}]} as unknown as DocumentNode; export const ColorFilterToolBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const QuestionFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const QuestionsBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const InteractionGroupContainerBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}}]} as unknown as DocumentNode; -export const ContentBlockFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]} as unknown as DocumentNode; -export const PageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"pages_pages_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; -export const TemplateFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TemplateFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EntryInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageTemplate"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"pages_pages_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}}]} as unknown as DocumentNode; -export const HomepageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HomepageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"homepage_homepage_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; -export const InvestigationChildPageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationChildPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; +export const QuestionFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const QuestionsBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}}]} as unknown as DocumentNode; +export const InteractionGroupContainerBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}}]} as unknown as DocumentNode; +export const ContentBlockFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]} as unknown as DocumentNode; +export const PageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"pages_pages_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; +export const TemplateFactoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TemplateFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EntryInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageTemplate"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"pages_pages_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}}]} as unknown as DocumentNode; +export const HomepageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HomepageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"homepage_homepage_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; +export const InvestigationChildPageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationChildPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]} as unknown as DocumentNode; export const InvestigationLandingPageTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationLandingPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationParent_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]} as unknown as DocumentNode; export const InvestigationSectionBreakTemplateFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationSectionBreakTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const UserFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"UserFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UserInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]} as unknown as DocumentNode; export const AuthFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AuthFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Auth"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"jwt"}},{"kind":"Field","name":{"kind":"Name","value":"jwtExpiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"refreshToken"}},{"kind":"Field","name":{"kind":"Name","value":"refreshTokenExpiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"user"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"UserFragment"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"UserFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UserInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]} as unknown as DocumentNode; -export const InvestigationChildPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationChildPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationChildPageTemplate"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationSectionBreakTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationChildPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationSectionBreakTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const InvestigationChildPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationChildPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationChildPageTemplate"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationSectionBreakTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationChildPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationSectionBreakTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"prev"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"StringValue","value":"default","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const 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":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HomepageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"homepage_homepage_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}}]} as unknown as DocumentNode; +export const HomepageQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HomepageQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"HomepageTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_filterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"preSelectedColor"}},{"kind":"Field","name":{"kind":"Name","value":"readOnly"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","name":{"kind":"Name","value":"displayTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"displayTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tableRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"rowHeader"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BarGraphToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_barGraphTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"graphBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"graphBars_bar_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ScatterplotToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_scatterplotTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"yAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"xAxisLabel"}},{"kind":"Field","name":{"kind":"Name","value":"scatterplotItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"scatterplotItems_item_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"xValue"}},{"kind":"Field","name":{"kind":"Name","value":"yValue"}},{"kind":"Field","name":{"kind":"Name","value":"itemLabel"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TwoColumnContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_twoColumnContainer_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"columns"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"childblocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsLabels"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","alias":{"kind":"Name","value":"filterColorOptionsValues"},"name":{"kind":"Name","value":"filterColorOptions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"label"},"value":{"kind":"BooleanValue","value":true}}]},{"kind":"Field","name":{"kind":"Name","value":"colorFilterToolObjects"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"groupName"}},{"kind":"Field","alias":{"kind":"Name","value":"objects"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_object_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"objectCaption"}},{"kind":"Field","alias":{"kind":"Name","value":"filterImages"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"colorFilterToolObjects_filterimage_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"max"},"name":{"kind":"Name","value":"colorToolMax"}},{"kind":"Field","alias":{"kind":"Name","value":"min"},"name":{"kind":"Name","value":"colorToolMin"}},{"kind":"Field","alias":{"kind":"Name","value":"defaultValue"},"name":{"kind":"Name","value":"colorToolDefaultValue"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"filter"}},{"kind":"Field","alias":{"kind":"Name","value":"color"},"name":{"kind":"Name","value":"preSelectedColor"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_select_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_multiselect_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"options"},"name":{"kind":"Name","value":"answerOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"answerOptions_option_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"label"},"name":{"kind":"Name","value":"optionLabel"}},{"kind":"Field","alias":{"kind":"Name","value":"value"},"name":{"kind":"Name","value":"optionValue"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_readonlyText_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}},{"kind":"Field","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"questionText"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionsBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_questionBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionFactory"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InteractionGroupContainerBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","alias":{"kind":"Name","value":"childBlocks"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContentBlockFactory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_NeoField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TwoColumnContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InteractionGroupContainerBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"BarGraphToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"FilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ScatterplotToolBlock"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HomepageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"homepage_homepage_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContentBlockFactory"}}]}}]}}]} as unknown as DocumentNode; export const 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 25875490..8917ed61 100644 --- a/gql/student-schema/graphql.ts +++ b/gql/student-schema/graphql.ts @@ -7884,6 +7884,299 @@ export type LinkField_Link = { url?: Maybe; }; +export type MultiPartBlocks_NeoField = MultiPartBlocks_Multiselect_BlockType | MultiPartBlocks_ReadonlyText_BlockType | MultiPartBlocks_Select_BlockType | MultiPartBlocks_Text_BlockType; + +export type MultiPartBlocks_Multiselect_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_multiselect_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + answerOptions: Array>; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Multiselect_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type MultiPartBlocks_Multiselect_BlockTypeAnswerOptionsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type MultiPartBlocks_ReadonlyText_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_readonlyText_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + questionText?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_ReadonlyText_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + +export type MultiPartBlocks_Select_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_select_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + answerOptions: Array>; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Select_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + + +export type MultiPartBlocks_Select_BlockTypeAnswerOptionsArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + +export type MultiPartBlocks_Text_BlockType = ElementInterface & NeoBlockInterface & { + __typename?: 'multiPartBlocks_text_BlockType'; + /** Return a number of related elements for a field. */ + _count?: Maybe; + /** Whether the element is archived. */ + archived?: Maybe; + /** The date the element was created. */ + dateCreated?: Maybe; + /** The date the element was last updated. */ + dateUpdated?: Maybe; + /** Whether the element is enabled. */ + enabled?: Maybe; + /** The ID of the field that owns the Neo block. */ + fieldId?: Maybe; + /** The ID of the entity */ + id?: Maybe; + /** The language of the site element is associated with. */ + language?: Maybe; + /** The Neo block’s level. */ + level?: Maybe; + /** The ID of the primary owner of the Neo block. */ + primaryOwnerId?: Maybe; + /** The element’s search score, if the `search` parameter was used when querying for the element. */ + searchScore?: Maybe; + /** The handle of the site the element is associated with. */ + siteHandle?: Maybe; + /** The ID of the site the element is associated with. */ + siteId?: Maybe; + /** The unique identifier for an element-site relation. */ + siteSettingsId?: Maybe; + /** The element’s slug. */ + slug?: Maybe; + /** The sort order of the Neo block within the owner element field. */ + sortOrder?: Maybe; + /** The element’s status. */ + status?: Maybe; + /** The element’s title. */ + title?: Maybe; + /** Whether the element has been soft-deleted. */ + trashed?: Maybe; + /** The handle of the Neo block’s type. */ + typeHandle?: Maybe; + /** The ID of the Neo block’s type. */ + typeId?: Maybe; + /** The UID of the entity */ + uid?: Maybe; + /** The element’s URI. */ + uri?: Maybe; +}; + + +export type MultiPartBlocks_Text_BlockType_CountArgs = { + field: Scalars['String']['input']; +}; + export type Objects_Object_BlockType = ElementInterface & MatrixBlockInterface & { __typename?: 'objects_object_BlockType'; /** Return a number of related elements for a field. */ @@ -9303,6 +9596,7 @@ export type Questions_Default_Entry = ElementInterface & EntryInterface & { lft?: Maybe; /** The same element in other locales. */ localized: Array; + multiPartBlocks?: Maybe>>; /** Returns the next element relative to this one, from a given set of criteria. */ next?: Maybe; /** The entry’s parent, if the section is a structure. */ @@ -9671,6 +9965,41 @@ export type Questions_Default_EntryLocalizedArgs = { }; +export type Questions_Default_EntryMultiPartBlocksArgs = { + dateCreated?: InputMaybe>>; + dateUpdated?: InputMaybe>>; + fieldId?: InputMaybe>>; + fixedOrder?: InputMaybe; + id?: InputMaybe>>; + inReverse?: InputMaybe; + level?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe; + preferSites?: InputMaybe>>; + primaryOwnerId?: InputMaybe>>; + ref?: InputMaybe>>; + relatedTo?: InputMaybe>>; + relatedToAll?: InputMaybe>>; + relatedToAssets?: InputMaybe>>; + relatedToCategories?: InputMaybe>>; + relatedToEntries?: InputMaybe>>; + relatedToTags?: InputMaybe>>; + relatedToUsers?: InputMaybe>>; + search?: InputMaybe; + site?: InputMaybe>>; + siteId?: InputMaybe>>; + siteSettingsId?: InputMaybe>>; + slug?: InputMaybe>>; + title?: InputMaybe>>; + type?: InputMaybe>>; + typeId?: InputMaybe>>; + uid?: InputMaybe>>; + unique?: InputMaybe; + uri?: InputMaybe>>; +}; + + export type Questions_Default_EntryNextArgs = { after?: InputMaybe; ancestorDist?: InputMaybe; diff --git a/types/answers.d.ts b/types/answers.d.ts index 35cbfe89..4b0bcfe6 100644 --- a/types/answers.d.ts +++ b/types/answers.d.ts @@ -1,9 +1,30 @@ -import { AnswerInput } from "@/gql/student-schema/graphql"; - type QuestionId = string; export type InvestigationId = string | null | undefined; +export type TextInput = string; +export type SelectInput = string; +export type MultiselectInput = Array; +export type WidgetInput = object; + +export type SimpleQuestionData = + | TextInput + | SelectInput + | MultiselectInput + | WidgetInput; + +export type InlineQuestionData = { + [key: QuestionId]: TextInput | SelectInput | MultiselectInput; +}; + +export type AnswerData = SimpleQuestionData | InlineQuestionData; + +export interface Answer { + data: AnswerData; + id?: string; + questionId?: QuestionId; +} + export type Answers = { - [key: QuestionId]: AnswerInput; + [key: QuestionId]: Answer; }; diff --git a/components/shapes/questions.ts b/types/questions.d.ts similarity index 95% rename from components/shapes/questions.ts rename to types/questions.d.ts index 5fbc407a..389fba46 100644 --- a/components/shapes/questions.ts +++ b/types/questions.d.ts @@ -13,7 +13,7 @@ export type TextQuestion = "text"; export type TextAreaQuestion = "textarea"; export type SelectQuestion = "select"; export type MultiselectQuestion = "multiselect"; -export type Readonly = "readonly"; +export type Readonly = "readonlyText"; export type SimpleQuestionType = | TextQuestion