From a0616ce07170052e3c7381339ae25c4e2d2dbc99 Mon Sep 17 00:00:00 2001 From: Alexandra Goff Date: Thu, 1 Aug 2024 10:19:06 -0700 Subject: [PATCH] perf: add static param generation + prefetch (#241) --- .../[investigation]/[page]/layout.tsx | 57 +++++++++++++++++-- app/[locale]/[investigation]/[page]/page.tsx | 6 +- app/[locale]/[investigation]/layout.tsx | 52 +++++++++++++---- app/[locale]/[investigation]/page.tsx | 7 +-- .../[investigation]/reference/[slug]/page.tsx | 4 +- .../[investigation]/review/layout.tsx | 4 +- app/[locale]/layout.tsx | 23 +++++--- app/[locale]/page.tsx | 10 +--- components/auth/investigation/SignedIn.tsx | 1 + components/auth/investigation/SignedOut.tsx | 1 + .../InvestigationGrid/InvestigationGrid.tsx | 5 +- components/page/Pager/Pager.tsx | 1 + gql/educator-schema/graphql.ts | 16 ++++++ gql/public-schema/gql.ts | 10 ++++ gql/public-schema/graphql.ts | 33 +++++++++++ gql/student-schema/graphql.ts | 16 ++++++ 16 files changed, 197 insertions(+), 49 deletions(-) diff --git a/app/[locale]/[investigation]/[page]/layout.tsx b/app/[locale]/[investigation]/[page]/layout.tsx index fbab026a..c9ec0a9e 100644 --- a/app/[locale]/[investigation]/[page]/layout.tsx +++ b/app/[locale]/[investigation]/[page]/layout.tsx @@ -1,5 +1,5 @@ -import { PropsWithChildren, ReactNode } from "react"; -import { RootLayoutParams } from "../../layout"; +import { FunctionComponent, PropsWithChildren, ReactNode } from "react"; +import { RootParams } from "../../layout"; import { InvestigationParams } from "../layout"; import { graphql } from "@/gql/public-schema"; import { queryAPI } from "@/lib/fetch"; @@ -20,7 +20,8 @@ export interface InvestigationPageParams { } export interface InvestigationPageProps { - params: RootLayoutParams & InvestigationParams & InvestigationPageParams; + params: RootParams & InvestigationParams & InvestigationPageParams; + searchParams: Record | undefined>; reference: ReactNode; } @@ -33,9 +34,53 @@ const Query = graphql(` } `); -const InvestigationPageLayout: ( - props: PropsWithChildren -) => Promise = async ({ +export const generateStaticParams = async ({ + params: { locale, investigation }, +}: InvestigationPageProps) => { + const site = getSite(locale); + + const InvestigationParamsQuery = graphql(` + query InvestigationPageParams($site: [String], $slug: [String]) { + entry(site: $site, slug: $slug) { + children { + ... on investigations_default_Entry { + slug + } + ... on investigations_investigationSectionBreakChild_Entry { + slug + } + } + } + } + `); + + const { data } = await queryAPI({ + query: InvestigationParamsQuery, + variables: { + site: [site], + slug: [investigation], + }, + }); + + return data?.entry?.children?.map((entry) => { + if ( + entry?.__typename === "investigations_default_Entry" || + entry?.__typename === + "investigations_investigationSectionBreakChild_Entry" + ) { + const { slug } = entry; + + return { page: slug }; + } + }); +}; + +// show 404 for any investigation not pre-defined +export const dynamicParams = false; + +const InvestigationPageLayout: FunctionComponent< + PropsWithChildren +> = async ({ children, reference, params: { locale, investigation, page }, diff --git a/app/[locale]/[investigation]/[page]/page.tsx b/app/[locale]/[investigation]/[page]/page.tsx index 99d7354a..15d30c8a 100644 --- a/app/[locale]/[investigation]/[page]/page.tsx +++ b/app/[locale]/[investigation]/[page]/page.tsx @@ -1,6 +1,6 @@ import type { Metadata } from "next"; import { graphql } from "@/gql/public-schema"; -import { draftMode } from 'next/headers'; +import { draftMode } from "next/headers"; import { notFound } from "next/navigation"; import { getAuthCookies, @@ -54,9 +54,7 @@ export async function generateMetadata({ return title ? { title, twitter: { title } } : {}; } -const InvestigationPage: ( - props: InvestigationPageProps -) => Promise = async ({ +const InvestigationPage: FunctionComponent = async ({ params: { locale, investigation, page }, searchParams, }) => { diff --git a/app/[locale]/[investigation]/layout.tsx b/app/[locale]/[investigation]/layout.tsx index cb432868..4a0eb3c3 100644 --- a/app/[locale]/[investigation]/layout.tsx +++ b/app/[locale]/[investigation]/layout.tsx @@ -1,6 +1,6 @@ import { Metadata } from "next"; -import { RootLayoutParams } from "../layout"; -import { PropsWithChildren } from "react"; +import { RootParams } from "../layout"; +import { FunctionComponent, PropsWithChildren } from "react"; import { queryAPI } from "@/lib/fetch"; import { graphql } from "@/gql/public-schema"; import StudentStoredAnswers from "@/components/student-schema/StoredAnswersWrapper"; @@ -18,8 +18,9 @@ export interface InvestigationParams { investigation: string; } -export interface InvestigationLandingProps { - params: RootLayoutParams & InvestigationParams; +export interface InvestigationProps { + params: RootParams & InvestigationParams; + searchParams: Record | undefined>; } const InvestigationMetadataQuery = graphql(` @@ -34,7 +35,7 @@ const InvestigationMetadataQuery = graphql(` export async function generateMetadata({ params: { investigation, locale }, -}: InvestigationLandingProps): Promise { +}: InvestigationProps): Promise { const site = getSite(locale); const { data } = await queryAPI({ @@ -50,6 +51,38 @@ export async function generateMetadata({ return { title, twitter: { title } }; } +export const generateStaticParams = async ({ + params: { locale }, +}: InvestigationProps) => { + const site = getSite(locale); + + const InvestigationParamsQuery = graphql(` + query InvestigationParams($site: [String]) { + investigationsEntries(site: $site, level: 1) { + ... on investigations_investigationParent_Entry { + slug + } + } + } + `); + + const { data } = await queryAPI({ + query: InvestigationParamsQuery, + variables: { + site: [site], + }, + }); + + return data?.investigationsEntries?.map((entry) => { + if (entry?.__typename === "investigations_investigationParent_Entry") { + return { investigation: entry.slug }; + } + }); +}; + +// show 404 for any investigation not pre-defined +export const dynamicParams = false; + const InvestigationIdQuery = graphql(` query InvestigationId($site: [String], $uri: [String]) { entry(site: $site, uri: $uri) { @@ -111,12 +144,9 @@ const InvestigationIdQuery = graphql(` } `); -const InvestigationLandingLayout: ( - props: PropsWithChildren -) => Promise = async ({ - children, - params: { locale, investigation }, -}) => { +const InvestigationLandingLayout: FunctionComponent< + PropsWithChildren +> = async ({ children, params: { locale, investigation } }) => { const site = getSite(locale); const { data } = await queryAPI({ diff --git a/app/[locale]/[investigation]/page.tsx b/app/[locale]/[investigation]/page.tsx index f4e0b6a7..2e8ac459 100644 --- a/app/[locale]/[investigation]/page.tsx +++ b/app/[locale]/[investigation]/page.tsx @@ -1,7 +1,7 @@ import { notFound } from "next/navigation"; import { graphql } from "@/gql/public-schema"; import { draftMode } from "next/headers"; -import { InvestigationLandingProps } from "./layout"; +import { InvestigationProps } from "./layout"; import { getAuthCookies, getUserFromJwt, @@ -9,6 +9,7 @@ import { import { queryAPI } from "@/lib/fetch"; import InvestigationLandingPageTemplate from "@/components/templates/InvestigationLandingPage"; import { getSite } from "@/helpers"; +import { FunctionComponent } from "react"; const Query = graphql(` query InvestigationPage($site: [String], $uri: [String]) { @@ -19,9 +20,7 @@ const Query = graphql(` } `); -const InvestigationLanding: ( - props: InvestigationLandingProps -) => Promise = async ({ +const InvestigationLanding: FunctionComponent = async ({ params: { locale, investigation }, searchParams, }) => { diff --git a/app/[locale]/[investigation]/reference/[slug]/page.tsx b/app/[locale]/[investigation]/reference/[slug]/page.tsx index 3567876d..0ca436c9 100644 --- a/app/[locale]/[investigation]/reference/[slug]/page.tsx +++ b/app/[locale]/[investigation]/reference/[slug]/page.tsx @@ -2,7 +2,7 @@ import { graphql } from "@/gql/public-schema"; import { queryAPI } from "@/lib/fetch"; import { fallbackLng } from "@/lib/i18n/settings"; import { InvestigationParams } from "../../layout"; -import { RootLayoutParams } from "@/app/[locale]/layout"; +import { RootParams } from "@/app/[locale]/layout"; import { notFound } from "next/navigation"; import ReferenceContentPage from "@/components/templates/ReferenceContentPage"; import { getSite } from "@/helpers"; @@ -12,7 +12,7 @@ interface ReferencePageParams { } export interface ReferencePageProps { - params: RootLayoutParams & InvestigationParams & ReferencePageParams; + params: RootParams & InvestigationParams & ReferencePageParams; } const Query = graphql(` diff --git a/app/[locale]/[investigation]/review/layout.tsx b/app/[locale]/[investigation]/review/layout.tsx index 4c106fcb..f33003e4 100644 --- a/app/[locale]/[investigation]/review/layout.tsx +++ b/app/[locale]/[investigation]/review/layout.tsx @@ -1,5 +1,5 @@ import { FunctionComponent, PropsWithChildren } from "react"; -import { RootLayoutParams } from "../../layout"; +import { RootParams } from "../../layout"; import { InvestigationParams } from "../layout"; import { ProgressProvider } from "@/contexts/Progress"; import Header from "@/page/Header/Header"; @@ -10,7 +10,7 @@ import { } from "@/components/auth/serverHelpers"; export interface ReviewPageProps { - params: RootLayoutParams & InvestigationParams; + params: RootParams & InvestigationParams; } const ReviewLayout: FunctionComponent< diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 34f656a2..cb2bb5c3 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -1,6 +1,6 @@ import "focus-visible"; import "@/styles/styles.scss"; -import { PropsWithChildren } from "react"; +import { FunctionComponent, PropsWithChildren } from "react"; import { Metadata } from "next"; import { notFound } from "next/navigation"; import Script from "next/script"; @@ -8,7 +8,7 @@ import { graphql } from "@/gql/public-schema"; import { SourceSansPro } from "@/lib/fonts"; import StyledComponentsRegistry from "@/lib/registry"; import GlobalStyles from "@/lib/styles"; -import { fallbackLng } from "@/lib/i18n/settings"; +import { fallbackLng, languages } from "@/lib/i18n/settings"; import { queryAPI } from "@/lib/fetch"; import { GlobalDataProvider, GlobalData } from "@/contexts/GlobalData"; import { AuthDialogManagerProvider } from "@/contexts/AuthDialogManager"; @@ -18,12 +18,13 @@ import { getSite } from "@/helpers"; import AuthDialogs from "@/components/auth/AuthDialogs"; import { getAuthCookies } from "@/components/auth/serverHelpers"; -export interface RootLayoutParams { +export interface RootParams { locale: string; } -interface RootLayoutProps { - params: RootLayoutParams; +export interface RootProps { + params: RootParams; + searchParams: Record | undefined>; } const PLAUSIBLE_DOMAIN = process.env.NEXT_PUBLIC_PLAUSIBLE_DOMAIN; @@ -77,16 +78,20 @@ const getGlobals = async (locale = "en"): Promise => { export async function generateMetadata({ params: { locale }, -}: RootLayoutProps): Promise { +}: RootProps): Promise { const globalData = await getGlobals(locale); const description = globalData?.siteInfo?.siteDescription; return { description }; } -const RootLayout: ( - props: PropsWithChildren -) => Promise = async ({ +export const generateStaticParams = () => { + return languages.map((locale) => { + return { locale }; + }); +}; + +const RootLayout: FunctionComponent> = async ({ params: { locale = fallbackLng }, children, }) => { diff --git a/app/[locale]/page.tsx b/app/[locale]/page.tsx index bcdbcf8c..5ec11239 100644 --- a/app/[locale]/page.tsx +++ b/app/[locale]/page.tsx @@ -1,6 +1,6 @@ import { graphql } from "@/gql/public-schema"; import { draftMode } from "next/headers"; -import { RootLayoutParams } from "./layout"; +import { RootProps } from "./layout"; import HomePageTemplate from "@/templates/HomePage"; import { notFound } from "next/navigation"; import SignOut from "@/components/auth/buttons/SignOut"; @@ -10,14 +10,10 @@ import { } from "@/components/auth/serverHelpers"; import { queryAPI } from "@/lib/fetch"; import { getSite } from "@/helpers"; +import { FunctionComponent } from "react"; const CRAFT_HOMEPAGE_URI = "__home__"; -interface HomePageProps { - params: RootLayoutParams; - searchParams: any; -} - export const revalidate = 60; const Query = graphql(` @@ -29,7 +25,7 @@ const Query = graphql(` } `); -const HomePage: (props: HomePageProps) => Promise = async ({ +const HomePage: FunctionComponent = async ({ params: { locale }, searchParams, }) => { diff --git a/components/auth/investigation/SignedIn.tsx b/components/auth/investigation/SignedIn.tsx index 5363fd3f..bee87ca3 100644 --- a/components/auth/investigation/SignedIn.tsx +++ b/components/auth/investigation/SignedIn.tsx @@ -25,6 +25,7 @@ const SignedIn: FunctionComponent<{ url={firstPage} isInactive={status !== "active"} isBlock + prefetch /> diff --git a/components/auth/investigation/SignedOut.tsx b/components/auth/investigation/SignedOut.tsx index fba9f416..45644b0e 100644 --- a/components/auth/investigation/SignedOut.tsx +++ b/components/auth/investigation/SignedOut.tsx @@ -19,6 +19,7 @@ const SignedOut: FunctionComponent<{ styleAs="tertiary" url={firstPage} text={t("auth.continue_wo_login_button")} + prefetch /> {t("auth.continue_wo_login_label")} diff --git a/components/content-blocks/InvestigationGrid/InvestigationGrid.tsx b/components/content-blocks/InvestigationGrid/InvestigationGrid.tsx index b53983c2..bde75f95 100644 --- a/components/content-blocks/InvestigationGrid/InvestigationGrid.tsx +++ b/components/content-blocks/InvestigationGrid/InvestigationGrid.tsx @@ -65,10 +65,7 @@ const InvestigationGrid: FunctionComponent = ({ return (
  • - + {image && } diff --git a/components/page/Pager/Pager.tsx b/components/page/Pager/Pager.tsx index 40228bdd..2450f33e 100644 --- a/components/page/Pager/Pager.tsx +++ b/components/page/Pager/Pager.tsx @@ -141,6 +141,7 @@ const Pager: FunctionComponent = ({ {rightText || t("pager.next")} diff --git a/gql/educator-schema/graphql.ts b/gql/educator-schema/graphql.ts index 0c36a851..f007157f 100644 --- a/gql/educator-schema/graphql.ts +++ b/gql/educator-schema/graphql.ts @@ -4220,6 +4220,13 @@ export type WhereBetweenFiltersInput = { values?: InputMaybe>>; }; +export type WhereContainsInFilterInput = { + /** The keys to search on, you can use the `field.subField` syntax for nested fields */ + keys?: InputMaybe>>; + /** The value that should be fuzzy matched in the key-values */ + value?: InputMaybe; +}; + export type WhereFiltersInput = { /** The key to search on, you can use the `field.subField` syntax for nested fields */ key?: InputMaybe; @@ -4459,6 +4466,7 @@ export type ColorFilterToolObjects_Filterimage_BlockTypeImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -5249,6 +5257,7 @@ export type ContentBlocks_Image_BlockTypeImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -5873,6 +5882,7 @@ export type ContentBlocks_SupernovaDistanceDistribution_BlockTypeImageAlbumArgs sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -6322,6 +6332,7 @@ export type ContentBlocks_Video_BlockTypeVideoArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -7824,6 +7835,7 @@ export type Datasets_SupernovaGalaxyObservations_EntryImageAlbumArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -8393,6 +8405,7 @@ export type FiltersImages_FilterImage_BlockTypeImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -8590,6 +8603,7 @@ export type HomepageContentBlocks_Image_BlockTypeImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -10831,6 +10845,7 @@ export type Investigations_InvestigationParent_EntryImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -16039,6 +16054,7 @@ export type ReferenceContentBlocks_Image_BlockTypeImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; diff --git a/gql/public-schema/gql.ts b/gql/public-schema/gql.ts index 31efea4c..2527bf77 100644 --- a/gql/public-schema/gql.ts +++ b/gql/public-schema/gql.ts @@ -15,8 +15,10 @@ import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document- const documents = { "\n query ReferenceContent($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n ...ReferenceContentTemplate\n }\n }\n": types.ReferenceContentDocument, "\n query InvestigationChildPage($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n ...InvestigationChildPageTemplate\n ...InvestigationSectionBreakTemplate\n }\n }\n": types.InvestigationChildPageDocument, + "\n query InvestigationPageParams($site: [String], $slug: [String]) {\n entry(site: $site, slug: $slug) {\n children {\n ... on investigations_default_Entry {\n slug\n }\n ... on investigations_investigationSectionBreakChild_Entry {\n slug\n }\n }\n }\n }\n ": types.InvestigationPageParamsDocument, "\n query InvestigationChildPageMetadata($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n title\n }\n }\n": types.InvestigationChildPageMetadataDocument, "\n query InvestigationMetadata($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n ... on investigations_investigationParent_Entry {\n title\n }\n }\n }\n": types.InvestigationMetadataDocument, + "\n query InvestigationParams($site: [String]) {\n investigationsEntries(site: $site, level: 1) {\n ... on investigations_investigationParent_Entry {\n slug\n }\n }\n }\n ": types.InvestigationParamsDocument, "\n query InvestigationId($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n ... on investigations_investigationParent_Entry {\n __typename\n id\n acknowledgements: text\n children {\n __typename\n title\n id\n uri\n ... on investigations_default_Entry {\n hasSavePoint\n contentBlocks {\n __typename\n ...QuestionsBlock\n ... on contentBlocks_twoColumnContainer_BlockType {\n columns: children {\n __typename\n ... on contentBlocks_colLeft_BlockType {\n children {\n ...QuestionsBlock\n ... on contentBlocks_group_BlockType {\n group: children {\n ...QuestionsBlock\n }\n }\n }\n }\n ... on contentBlocks_colRight_BlockType {\n children {\n __typename\n ...QuestionsBlock\n ... on contentBlocks_group_BlockType {\n group: children {\n ... on contentBlocks_questionBlock_BlockType {\n __typename\n questionEntries {\n ...QuestionEntry\n }\n }\n }\n }\n }\n }\n }\n }\n ... on contentBlocks_group_BlockType {\n group: children {\n ...QuestionsBlock\n }\n }\n }\n }\n }\n }\n }\n }\n": types.InvestigationIdDocument, "\n query InvestigationPage($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n __typename\n ...InvestigationLandingPageTemplate\n }\n }\n": types.InvestigationPageDocument, "\n query ReviewPage($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n ... on investigations_investigationParent_Entry {\n title\n children {\n ... on investigations_default_Entry {\n contentBlocks {\n ...QuestionsBlock\n ... on contentBlocks_twoColumnContainer_BlockType {\n columns: children {\n ... on contentBlocks_colLeft_BlockType {\n children {\n ...QuestionsBlock\n ... on contentBlocks_group_BlockType {\n group: children {\n ...QuestionsBlock\n }\n }\n }\n }\n ... on contentBlocks_colRight_BlockType {\n children {\n ...QuestionsBlock\n ... on contentBlocks_group_BlockType {\n group: children {\n ... on contentBlocks_questionBlock_BlockType {\n questionEntries {\n ...QuestionEntry\n }\n }\n }\n }\n }\n }\n }\n }\n ... on contentBlocks_group_BlockType {\n group: children {\n ...QuestionsBlock\n }\n }\n }\n }\n }\n }\n }\n }\n": types.ReviewPageDocument, @@ -103,6 +105,10 @@ export function graphql(source: "\n query ReferenceContent($site: [String], $ur * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ export function graphql(source: "\n query InvestigationChildPage($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n ...InvestigationChildPageTemplate\n ...InvestigationSectionBreakTemplate\n }\n }\n"): (typeof documents)["\n query InvestigationChildPage($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n ...InvestigationChildPageTemplate\n ...InvestigationSectionBreakTemplate\n }\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n query InvestigationPageParams($site: [String], $slug: [String]) {\n entry(site: $site, slug: $slug) {\n children {\n ... on investigations_default_Entry {\n slug\n }\n ... on investigations_investigationSectionBreakChild_Entry {\n slug\n }\n }\n }\n }\n "): (typeof documents)["\n query InvestigationPageParams($site: [String], $slug: [String]) {\n entry(site: $site, slug: $slug) {\n children {\n ... on investigations_default_Entry {\n slug\n }\n ... on investigations_investigationSectionBreakChild_Entry {\n slug\n }\n }\n }\n }\n "]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -111,6 +117,10 @@ export function graphql(source: "\n query InvestigationChildPageMetadata($site: * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ export function graphql(source: "\n query InvestigationMetadata($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n ... on investigations_investigationParent_Entry {\n title\n }\n }\n }\n"): (typeof documents)["\n query InvestigationMetadata($site: [String], $uri: [String]) {\n entry(site: $site, uri: $uri) {\n ... on investigations_investigationParent_Entry {\n title\n }\n }\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n query InvestigationParams($site: [String]) {\n investigationsEntries(site: $site, level: 1) {\n ... on investigations_investigationParent_Entry {\n slug\n }\n }\n }\n "): (typeof documents)["\n query InvestigationParams($site: [String]) {\n investigationsEntries(site: $site, level: 1) {\n ... on investigations_investigationParent_Entry {\n slug\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 d6b433c8..d2830ddb 100644 --- a/gql/public-schema/graphql.ts +++ b/gql/public-schema/graphql.ts @@ -4378,6 +4378,13 @@ export type WhereBetweenFiltersInput = { values: InputMaybe>>; }; +export type WhereContainsInFilterInput = { + /** The keys to search on, you can use the `field.subField` syntax for nested fields */ + keys: InputMaybe>>; + /** The value that should be fuzzy matched in the key-values */ + value: InputMaybe; +}; + export type WhereFiltersInput = { /** The key to search on, you can use the `field.subField` syntax for nested fields */ key: InputMaybe; @@ -4617,6 +4624,7 @@ export type ColorFilterToolObjects_Filterimage_BlockTypeImageArgs = { sortByDesc: InputMaybe>>; where: InputMaybe; whereBetween: InputMaybe; + whereContainsIn: InputMaybe; whereIn: InputMaybe; whereNotBetween: InputMaybe; whereNotIn: InputMaybe; @@ -5407,6 +5415,7 @@ export type ContentBlocks_Image_BlockTypeImageArgs = { sortByDesc: InputMaybe>>; where: InputMaybe; whereBetween: InputMaybe; + whereContainsIn: InputMaybe; whereIn: InputMaybe; whereNotBetween: InputMaybe; whereNotIn: InputMaybe; @@ -6031,6 +6040,7 @@ export type ContentBlocks_SupernovaDistanceDistribution_BlockTypeImageAlbumArgs sortByDesc: InputMaybe>>; where: InputMaybe; whereBetween: InputMaybe; + whereContainsIn: InputMaybe; whereIn: InputMaybe; whereNotBetween: InputMaybe; whereNotIn: InputMaybe; @@ -6480,6 +6490,7 @@ export type ContentBlocks_Video_BlockTypeVideoArgs = { sortByDesc: InputMaybe>>; where: InputMaybe; whereBetween: InputMaybe; + whereContainsIn: InputMaybe; whereIn: InputMaybe; whereNotBetween: InputMaybe; whereNotIn: InputMaybe; @@ -8034,6 +8045,7 @@ export type Datasets_SupernovaGalaxyObservations_EntryImageAlbumArgs = { sortByDesc: InputMaybe>>; where: InputMaybe; whereBetween: InputMaybe; + whereContainsIn: InputMaybe; whereIn: InputMaybe; whereNotBetween: InputMaybe; whereNotIn: InputMaybe; @@ -8603,6 +8615,7 @@ export type FiltersImages_FilterImage_BlockTypeImageArgs = { sortByDesc: InputMaybe>>; where: InputMaybe; whereBetween: InputMaybe; + whereContainsIn: InputMaybe; whereIn: InputMaybe; whereNotBetween: InputMaybe; whereNotIn: InputMaybe; @@ -8800,6 +8813,7 @@ export type HomepageContentBlocks_Image_BlockTypeImageArgs = { sortByDesc: InputMaybe>>; where: InputMaybe; whereBetween: InputMaybe; + whereContainsIn: InputMaybe; whereIn: InputMaybe; whereNotBetween: InputMaybe; whereNotIn: InputMaybe; @@ -11053,6 +11067,7 @@ export type Investigations_InvestigationParent_EntryImageArgs = { sortByDesc: InputMaybe>>; where: InputMaybe; whereBetween: InputMaybe; + whereContainsIn: InputMaybe; whereIn: InputMaybe; whereNotBetween: InputMaybe; whereNotIn: InputMaybe; @@ -16277,6 +16292,7 @@ export type ReferenceContentBlocks_Image_BlockTypeImageArgs = { sortByDesc: InputMaybe>>; where: InputMaybe; whereBetween: InputMaybe; + whereContainsIn: InputMaybe; whereIn: InputMaybe; whereNotBetween: InputMaybe; whereNotIn: InputMaybe; @@ -21690,6 +21706,14 @@ export type InvestigationChildPageQuery = { __typename?: 'Query', entry: { __typ & { ' $fragmentRefs'?: { 'InvestigationSectionBreakTemplateFragment': InvestigationSectionBreakTemplateFragment } } ) | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' } | null }; +export type InvestigationPageParamsQueryVariables = Exact<{ + site: InputMaybe> | InputMaybe>; + slug: InputMaybe> | InputMaybe>; +}>; + + +export type InvestigationPageParamsQuery = { __typename?: 'Query', entry: { __typename?: 'datasets_starCluster_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'homepage_homepage_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'investigations_default_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'investigations_investigationParent_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'pages_pages_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'pages_redirectPage_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'questions_default_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'referenceModals_default_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'widgets_colorFilterTool_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'widgets_isochronePlot_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'widgets_lightCurveTool_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | { __typename?: 'widgets_sourceSelector_Entry', children: Array<{ __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry', slug: string | null } | { __typename?: 'investigations_investigationParent_Entry' } | { __typename?: 'investigations_investigationSectionBreakChild_Entry', slug: string | null } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' }> } | null }; + export type InvestigationChildPageMetadataQueryVariables = Exact<{ site: InputMaybe> | InputMaybe>; uri: InputMaybe> | InputMaybe>; @@ -21706,6 +21730,13 @@ export type InvestigationMetadataQueryVariables = Exact<{ export type InvestigationMetadataQuery = { __typename?: 'Query', entry: { __typename?: 'datasets_starCluster_Entry' } | { __typename?: 'datasets_supernovaGalaxyObservations_Entry' } | { __typename?: 'homepage_homepage_Entry' } | { __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry', title: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | { __typename?: 'pages_pages_Entry' } | { __typename?: 'pages_redirectPage_Entry' } | { __typename?: 'questions_default_Entry' } | { __typename?: 'referenceModals_default_Entry' } | { __typename?: 'widgets_colorFilterTool_Entry' } | { __typename?: 'widgets_isochronePlot_Entry' } | { __typename?: 'widgets_lightCurveTool_Entry' } | { __typename?: 'widgets_sourceSelector_Entry' } | null }; +export type InvestigationParamsQueryVariables = Exact<{ + site: InputMaybe> | InputMaybe>; +}>; + + +export type InvestigationParamsQuery = { __typename?: 'Query', investigationsEntries: Array<{ __typename?: 'investigations_default_Entry' } | { __typename?: 'investigations_investigationParent_Entry', slug: string | null } | { __typename?: 'investigations_investigationSectionBreakChild_Entry' } | null> | null }; + export type InvestigationIdQueryVariables = Exact<{ site: InputMaybe> | InputMaybe>; uri: InputMaybe> | InputMaybe>; @@ -22415,8 +22446,10 @@ export const UserFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind" 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 ReferenceContentDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ReferenceContent"},"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":"ReferenceContentTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ReferenceContentTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"referenceModals_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"contentBlocks"},"name":{"kind":"Name","value":"referenceContentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"referenceContentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"referenceContentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"referenceContentBlocks_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"}}]}}]}}]}}]}}]}}]}}]}}]} 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":"TextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_text_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_image_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"layout"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}},{"kind":"Field","name":{"kind":"Name","value":"preview"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_table_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"caption"}},{"kind":"Field","name":{"kind":"Name","value":"contentHeading"}},{"kind":"Field","alias":{"kind":"Name","value":"header"},"name":{"kind":"Name","value":"tableHeader"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"headerRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"headerRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"rows"},"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","alias":{"kind":"Name","value":"cells"},"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","alias":{"kind":"Name","value":"text"},"name":{"kind":"Name","value":"cellContent"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_rowHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableRow_previousQuestion_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"question"},"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":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"rows"},"name":{"kind":"Name","value":"questionTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"cells"},"name":{"kind":"Name","value":"tableCell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_question_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"answerType"},"name":{"kind":"Name","value":"questionType"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"options_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":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_static_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_rowHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"VideoBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_video_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":"video"},"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":"directUrlPreviewPlay"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"CalculatorQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableRows"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"header"},"name":{"kind":"Name","value":"tableHeader"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"headerRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"headerRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"rows"},"name":{"kind":"Name","value":"questionTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"cells"},"name":{"kind":"Name","value":"tableCell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_question_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"answerType"},"name":{"kind":"Name","value":"questionType"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"options_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":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_static_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_rowHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_previousQuestion_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"question"},"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":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"rows"},"name":{"kind":"Name","value":"questionTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"cells"},"name":{"kind":"Name","value":"tableCell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_question_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"answerType"},"name":{"kind":"Name","value":"questionType"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"options_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":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_static_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_rowHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TabularQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableRows"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolEntry"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_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":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"filterToolActions"}},{"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":false}}]},{"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","alias":{"kind":"Name","value":"name"},"name":{"kind":"Name","value":"objectName"}},{"kind":"Field","alias":{"kind":"Name","value":"caption"},"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","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":"ColorFilterToolQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolEntry"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SourceSelectorQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_sourceSelectorBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sourceSelector"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_sourceSelector_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":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"includeScatterPlot"}},{"kind":"Field","alias":{"kind":"Name","value":"yMin"},"name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"yMax"},"name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_supernovaGalaxyObservations_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"peakMjd"},"name":{"kind":"Name","value":"mjd"}},{"kind":"Field","alias":{"kind":"Name","value":"sources"},"name":{"kind":"Name","value":"alertSources"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"alertSources_source_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","alias":{"kind":"Name","value":"x"},"name":{"kind":"Name","value":"xCoord"}},{"kind":"Field","alias":{"kind":"Name","value":"y"},"name":{"kind":"Name","value":"yCoord"}},{"kind":"Field","name":{"kind":"Name","value":"radius"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"sourceType"}},{"kind":"Field","alias":{"kind":"Name","value":"id"},"name":{"kind":"Name","value":"sourceName"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageAlbum"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LightCurveQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_lightCurveBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"lightCurveTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_lightCurveTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_supernovaGalaxyObservations_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"peakMjd"},"name":{"kind":"Name","value":"mjd"}},{"kind":"Field","name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"yMin"},"name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"yMax"},"name":{"kind":"Name","value":"yAxisMax"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"IsochronePlotQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_isochronePlot_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":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_starCluster_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"ageLibrary"},"name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"plotPoints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"yMin"},"name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"yMax"},"name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","alias":{"kind":"Name","value":"xMin"},"name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"xMax"},"name":{"kind":"Name","value":"xAxisMax"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"WidgetQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"instructions"},"name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"SourceSelectorQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"LightCurveQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"IsochronePlotQuestion"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NumberQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_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":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"minimum"}},{"kind":"Field","name":{"kind":"Name","value":"maximum"}},{"kind":"Field","name":{"kind":"Name","value":"precision"}},{"kind":"Field","name":{"kind":"Name","value":"validation"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"validation_numberValidator_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SelectPart"},"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":"FragmentDefinition","name":{"kind":"Name","value":"MultiselectPart"},"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":"FragmentDefinition","name":{"kind":"Name","value":"NumberPart"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_number_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","name":{"kind":"Name","value":"minimum"}},{"kind":"Field","name":{"kind":"Name","value":"maximum"}},{"kind":"Field","name":{"kind":"Name","value":"precision"}},{"kind":"Field","name":{"kind":"Name","value":"validation"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"validation_numberValidator_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ReadOnlyPart"},"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":"MultipartQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_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":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"parts"},"name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NeoBlockInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"SelectPart"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"MultiselectPart"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"NumberPart"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ReadOnlyPart"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionEntry"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_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":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"CalculatorQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TabularQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"NumberQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"MultipartQuestion"}},{"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":"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":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionEntry"}}]}}]}},{"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":"Field","name":{"kind":"Name","value":"widgetInstructions"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ReferenceModalBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_referenceModalBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"referenceModalEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"referenceModals_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolEntry"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LightCurveQuestionData"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_supernovaDistanceDistribution_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_lightCurveBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lightCurveTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_lightCurveTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_supernovaGalaxyObservations_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":"distance"}},{"kind":"Field","alias":{"kind":"Name","value":"lat"},"name":{"kind":"Name","value":"galacticLatitude"}},{"kind":"Field","alias":{"kind":"Name","value":"long"},"name":{"kind":"Name","value":"galacticLongitude"}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SupernovaDistanceDistributionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_supernovaDistanceDistribution_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"instructions"},"name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"imageAlbum"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"step"},"name":{"kind":"Name","value":"binSize"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"LightCurveQuestionData"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"MagnitudeScatterPlotBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_magnitudeScatterPlot_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lightCurveTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_lightCurveTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_supernovaGalaxyObservations_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"peakMjd"},"name":{"kind":"Name","value":"mjd"}},{"kind":"Field","name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"yMin"},"name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"yMax"},"name":{"kind":"Name","value":"yAxisMax"}}]}}]}}]}},{"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":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"VideoBlock"}},{"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":"ReferenceModalBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"SupernovaDistanceDistributionBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"MagnitudeScatterPlotBlock"}}]}}]}},{"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":"TextBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"VideoBlock"}},{"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":"ReferenceModalBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"SupernovaDistanceDistributionBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"MagnitudeScatterPlotBlock"}}]}}]}}]}}]}},{"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":"VideoBlock"}},{"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":"ReferenceModalBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"SupernovaDistanceDistributionBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"MagnitudeScatterPlotBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"CameraFilterToolBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_cameraFilterTool_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"widgetInstructions"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EquationBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_equation_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"latex"}}]}},{"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":"VideoBlock"}},{"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":"ReferenceModalBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"CameraFilterToolBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"EquationBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"SupernovaDistanceDistributionBlock"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"MagnitudeScatterPlotBlock"}}]}},{"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":"parent"},"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":"text"}},{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"next"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"section"},"value":{"kind":"StringValue","value":"investigations","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"level"},"value":{"kind":"IntValue","value":"2"}}],"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"}}]}}]}}]}}]} as unknown as DocumentNode; +export const InvestigationPageParamsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationPageParams"},"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":"slug"}},"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":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationSectionBreakChild_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]}}]} 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 InvestigationMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationMetadata"},"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":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationParent_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}}]}}]}}]}}]} as unknown as DocumentNode; +export const InvestigationParamsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationParams"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"investigationsEntries"},"arguments":[{"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":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationParent_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} 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":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationParent_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"acknowledgements"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"hasSavePoint"}},{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"InlineFragment","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":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colLeft_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"FragmentSpread","name":{"kind":"Name","value":"QuestionEntry"}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"CalculatorQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableRows"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"header"},"name":{"kind":"Name","value":"tableHeader"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"headerRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"headerRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"rows"},"name":{"kind":"Name","value":"questionTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"cells"},"name":{"kind":"Name","value":"tableCell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_question_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"answerType"},"name":{"kind":"Name","value":"questionType"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"options_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":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_static_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_rowHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_previousQuestion_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"question"},"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":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"rows"},"name":{"kind":"Name","value":"questionTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"cells"},"name":{"kind":"Name","value":"tableCell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_question_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"answerType"},"name":{"kind":"Name","value":"questionType"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"options_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":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_static_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_rowHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TabularQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableRows"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolEntry"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_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":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"filterToolActions"}},{"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":false}}]},{"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","alias":{"kind":"Name","value":"name"},"name":{"kind":"Name","value":"objectName"}},{"kind":"Field","alias":{"kind":"Name","value":"caption"},"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","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":"ColorFilterToolQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolEntry"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SourceSelectorQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_sourceSelectorBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sourceSelector"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_sourceSelector_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":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"includeScatterPlot"}},{"kind":"Field","alias":{"kind":"Name","value":"yMin"},"name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"yMax"},"name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_supernovaGalaxyObservations_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"peakMjd"},"name":{"kind":"Name","value":"mjd"}},{"kind":"Field","alias":{"kind":"Name","value":"sources"},"name":{"kind":"Name","value":"alertSources"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"alertSources_source_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","alias":{"kind":"Name","value":"x"},"name":{"kind":"Name","value":"xCoord"}},{"kind":"Field","alias":{"kind":"Name","value":"y"},"name":{"kind":"Name","value":"yCoord"}},{"kind":"Field","name":{"kind":"Name","value":"radius"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"sourceType"}},{"kind":"Field","alias":{"kind":"Name","value":"id"},"name":{"kind":"Name","value":"sourceName"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageAlbum"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LightCurveQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_lightCurveBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"lightCurveTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_lightCurveTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_supernovaGalaxyObservations_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"peakMjd"},"name":{"kind":"Name","value":"mjd"}},{"kind":"Field","name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"yMin"},"name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"yMax"},"name":{"kind":"Name","value":"yAxisMax"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"IsochronePlotQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_isochronePlot_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":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_starCluster_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"ageLibrary"},"name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"plotPoints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"yMin"},"name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"yMax"},"name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","alias":{"kind":"Name","value":"xMin"},"name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"xMax"},"name":{"kind":"Name","value":"xAxisMax"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"WidgetQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"instructions"},"name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"SourceSelectorQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"LightCurveQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"IsochronePlotQuestion"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NumberQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_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":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"minimum"}},{"kind":"Field","name":{"kind":"Name","value":"maximum"}},{"kind":"Field","name":{"kind":"Name","value":"precision"}},{"kind":"Field","name":{"kind":"Name","value":"validation"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"validation_numberValidator_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SelectPart"},"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":"FragmentDefinition","name":{"kind":"Name","value":"MultiselectPart"},"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":"FragmentDefinition","name":{"kind":"Name","value":"NumberPart"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_number_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","name":{"kind":"Name","value":"minimum"}},{"kind":"Field","name":{"kind":"Name","value":"maximum"}},{"kind":"Field","name":{"kind":"Name","value":"precision"}},{"kind":"Field","name":{"kind":"Name","value":"validation"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"validation_numberValidator_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ReadOnlyPart"},"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":"MultipartQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_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":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"parts"},"name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NeoBlockInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"SelectPart"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"MultiselectPart"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"NumberPart"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ReadOnlyPart"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionEntry"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_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":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"CalculatorQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TabularQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"NumberQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"MultipartQuestion"}},{"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":"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":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionEntry"}}]}}]}}]} as unknown as DocumentNode; export const InvestigationPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"InvestigationPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"site"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"entry"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"site"},"value":{"kind":"Variable","name":{"kind":"Name","value":"site"}}},{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"InvestigationLandingPageTemplate"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"InvestigationLandingPageTemplate"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_investigationParent_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}},{"kind":"Field","name":{"kind":"Name","value":"directUrlOriginal"}},{"kind":"Field","name":{"kind":"Name","value":"PNG"}},{"kind":"Field","name":{"kind":"Name","value":"HighJPG"}},{"kind":"Field","name":{"kind":"Name","value":"LowJPG"}}]}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","alias":{"kind":"Name","value":"metadata"},"name":{"kind":"Name","value":"additional"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AltTextEN"}},{"kind":"Field","name":{"kind":"Name","value":"AltTextES"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionEN"}},{"kind":"Field","name":{"kind":"Name","value":"CaptionES"}},{"kind":"Field","name":{"kind":"Name","value":"Credit"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]} as unknown as DocumentNode; export const ReviewPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ReviewPage"},"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":"InlineFragment","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":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"investigations_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"InlineFragment","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":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_colRight_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionEntry"}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"contentBlocks_group_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"group"},"name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionsBlock"}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"CalculatorQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TableRows"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"header"},"name":{"kind":"Name","value":"tableHeader"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"headerRow"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"headerRow_tableCell_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"rows"},"name":{"kind":"Name","value":"questionTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"cells"},"name":{"kind":"Name","value":"tableCell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_question_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"answerType"},"name":{"kind":"Name","value":"questionType"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"options_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":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_static_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_rowHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_previousQuestion_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"question"},"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":"Field","name":{"kind":"Name","value":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"rows"},"name":{"kind":"Name","value":"questionTable"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionTable_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"cells"},"name":{"kind":"Name","value":"tableCell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_question_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"answerType"},"name":{"kind":"Name","value":"questionType"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"options_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":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_static_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"tableCell_rowHeader_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"equation"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TabularQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TableRows"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ColorFilterToolEntry"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_colorFilterTool_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":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"filterToolActions"}},{"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":false}}]},{"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","alias":{"kind":"Name","value":"name"},"name":{"kind":"Name","value":"objectName"}},{"kind":"Field","alias":{"kind":"Name","value":"caption"},"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","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":"ColorFilterToolQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_colorFilterToolBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"colorFilterTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolEntry"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SourceSelectorQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_sourceSelectorBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"sourceSelector"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_sourceSelector_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":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"includeScatterPlot"}},{"kind":"Field","alias":{"kind":"Name","value":"yMin"},"name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"yMax"},"name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","name":{"kind":"Name","value":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_supernovaGalaxyObservations_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"peakMjd"},"name":{"kind":"Name","value":"mjd"}},{"kind":"Field","alias":{"kind":"Name","value":"sources"},"name":{"kind":"Name","value":"alertSources"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"alertSources_source_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","alias":{"kind":"Name","value":"x"},"name":{"kind":"Name","value":"xCoord"}},{"kind":"Field","alias":{"kind":"Name","value":"y"},"name":{"kind":"Name","value":"yCoord"}},{"kind":"Field","name":{"kind":"Name","value":"radius"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"sourceType"}},{"kind":"Field","alias":{"kind":"Name","value":"id"},"name":{"kind":"Name","value":"sourceName"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageAlbum"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"directUrlPreview"}}]}}]}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LightCurveQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_lightCurveBlock_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"lightCurveTool"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"widgets_lightCurveTool_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_supernovaGalaxyObservations_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"peakMjd"},"name":{"kind":"Name","value":"mjd"}},{"kind":"Field","name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"yMin"},"name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"yMax"},"name":{"kind":"Name","value":"yAxisMax"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"IsochronePlotQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questionWidgetsBlock_isochronePlot_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":"dataset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_starCluster_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"ageLibrary"},"name":{"kind":"Name","value":"json"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"plotPoints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"datasets_Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"yMin"},"name":{"kind":"Name","value":"yAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"yMax"},"name":{"kind":"Name","value":"yAxisMax"}},{"kind":"Field","alias":{"kind":"Name","value":"xMin"},"name":{"kind":"Name","value":"xAxisMin"}},{"kind":"Field","alias":{"kind":"Name","value":"xMax"},"name":{"kind":"Name","value":"xAxisMax"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"WidgetQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_default_Entry"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"instructions"},"name":{"kind":"Name","value":"widgetInstructions"}},{"kind":"Field","name":{"kind":"Name","value":"questionWidgetsBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ColorFilterToolQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"SourceSelectorQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"LightCurveQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"IsochronePlotQuestion"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NumberQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_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":"questionText"}},{"kind":"Field","name":{"kind":"Name","value":"minimum"}},{"kind":"Field","name":{"kind":"Name","value":"maximum"}},{"kind":"Field","name":{"kind":"Name","value":"precision"}},{"kind":"Field","name":{"kind":"Name","value":"validation"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"validation_numberValidator_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SelectPart"},"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":"FragmentDefinition","name":{"kind":"Name","value":"MultiselectPart"},"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":"FragmentDefinition","name":{"kind":"Name","value":"NumberPart"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"multiPartBlocks_number_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","name":{"kind":"Name","value":"minimum"}},{"kind":"Field","name":{"kind":"Name","value":"maximum"}},{"kind":"Field","name":{"kind":"Name","value":"precision"}},{"kind":"Field","name":{"kind":"Name","value":"validation"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"validation_numberValidator_BlockType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ReadOnlyPart"},"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":"MultipartQuestion"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_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":"answerType"}},{"kind":"Field","alias":{"kind":"Name","value":"parts"},"name":{"kind":"Name","value":"multiPartBlocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NeoBlockInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","alias":{"kind":"Name","value":"type"},"name":{"kind":"Name","value":"typeHandle"}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"SelectPart"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"MultiselectPart"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"NumberPart"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ReadOnlyPart"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"QuestionEntry"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"questions_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":"answerType"}},{"kind":"Field","name":{"kind":"Name","value":"questionText"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"CalculatorQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TabularQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"WidgetQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"NumberQuestion"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"MultipartQuestion"}},{"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":"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":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"questionEntries"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"QuestionEntry"}}]}}]}}]} as unknown as DocumentNode; diff --git a/gql/student-schema/graphql.ts b/gql/student-schema/graphql.ts index 0c36a851..f007157f 100644 --- a/gql/student-schema/graphql.ts +++ b/gql/student-schema/graphql.ts @@ -4220,6 +4220,13 @@ export type WhereBetweenFiltersInput = { values?: InputMaybe>>; }; +export type WhereContainsInFilterInput = { + /** The keys to search on, you can use the `field.subField` syntax for nested fields */ + keys?: InputMaybe>>; + /** The value that should be fuzzy matched in the key-values */ + value?: InputMaybe; +}; + export type WhereFiltersInput = { /** The key to search on, you can use the `field.subField` syntax for nested fields */ key?: InputMaybe; @@ -4459,6 +4466,7 @@ export type ColorFilterToolObjects_Filterimage_BlockTypeImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -5249,6 +5257,7 @@ export type ContentBlocks_Image_BlockTypeImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -5873,6 +5882,7 @@ export type ContentBlocks_SupernovaDistanceDistribution_BlockTypeImageAlbumArgs sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -6322,6 +6332,7 @@ export type ContentBlocks_Video_BlockTypeVideoArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -7824,6 +7835,7 @@ export type Datasets_SupernovaGalaxyObservations_EntryImageAlbumArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -8393,6 +8405,7 @@ export type FiltersImages_FilterImage_BlockTypeImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -8590,6 +8603,7 @@ export type HomepageContentBlocks_Image_BlockTypeImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -10831,6 +10845,7 @@ export type Investigations_InvestigationParent_EntryImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe; @@ -16039,6 +16054,7 @@ export type ReferenceContentBlocks_Image_BlockTypeImageArgs = { sortByDesc?: InputMaybe>>; where?: InputMaybe; whereBetween?: InputMaybe; + whereContainsIn?: InputMaybe; whereIn?: InputMaybe; whereNotBetween?: InputMaybe; whereNotIn?: InputMaybe;