diff --git a/web/codegen.ts b/web/codegen.ts index 8077e82..cf9e7a6 100644 --- a/web/codegen.ts +++ b/web/codegen.ts @@ -10,6 +10,18 @@ const config: CodegenConfig = { generates: { "./src/gql/": { preset: "client", + presetConfig: { + fragmentMasking: { unmaskFunctionName: "unmaskFragment" }, + }, + config: { + scalars: { + DateTime: "string", + JSONString: "string", + PositiveInt: "number", + RichText: "string", + UUID: "string", + }, + }, }, }, }; diff --git a/web/src/app/aktuelt/[slug]/page.tsx b/web/src/app/aktuelt/[slug]/page.tsx index 39d6208..e7b122a 100644 --- a/web/src/app/aktuelt/[slug]/page.tsx +++ b/web/src/app/aktuelt/[slug]/page.tsx @@ -86,7 +86,7 @@ export default async function Page({ params }: { params: Params }) {

{news.title}

{news.lead && ( diff --git a/web/src/app/lokaler/[slug]/page.tsx b/web/src/app/lokaler/[slug]/page.tsx index ed27a8d..9c6eedb 100644 --- a/web/src/app/lokaler/[slug]/page.tsx +++ b/web/src/app/lokaler/[slug]/page.tsx @@ -1,12 +1,15 @@ import { Metadata, ResolvingMetadata } from "next"; import { notFound } from "next/navigation"; import { getClient } from "@/app/client"; -import { ImageSliderBlock } from "@/components/blocks/ImageSliderBlock"; +import { + ImageSliderBlock, + ImageSliderBlockFragmentDefinition, +} from "@/components/blocks/ImageSliderBlock"; import { Breadcrumb } from "@/components/general/Breadcrumb"; import { PageContent } from "@/components/general/PageContent"; import { NeufMap } from "@/components/venues/NeufMap"; import { VenueInfo } from "@/components/venues/VenueInfo"; -import { graphql } from "@/gql"; +import { graphql, unmaskFragment } from "@/gql"; import { VenueFragment } from "@/gql/graphql"; import { getSeoMetadata } from "@/lib/seo"; @@ -86,8 +89,14 @@ export default async function Page({ params }: { params: Params }) { return (
- {venue.images && venue.images.length !== 0 && ( - + {venue.images?.[0]?.__typename === "ImageSliderBlock" && ( + )}
diff --git a/web/src/app/lokaler/page.tsx b/web/src/app/lokaler/page.tsx index 2cd214a..b50cc94 100644 --- a/web/src/app/lokaler/page.tsx +++ b/web/src/app/lokaler/page.tsx @@ -45,7 +45,10 @@ const VenueFragmentDefinition = graphql(` seoTitle searchDescription images { - ...Blocks + __typename + ... on ImageSliderBlock { + ...ImageSliderBlock + } } body { ...Blocks diff --git a/web/src/app/sponsorer/page.tsx b/web/src/app/sponsorer/page.tsx index bffff54..ee7c5c7 100644 --- a/web/src/app/sponsorer/page.tsx +++ b/web/src/app/sponsorer/page.tsx @@ -1,6 +1,6 @@ import { Metadata, ResolvingMetadata } from "next"; import { graphql } from "@/gql"; -import { SponsorsPage, SponsorBlock } from "@/gql/graphql"; +import { type SponsorFragment, type SponsorsPageFragment } from "@/gql/graphql"; import { getClient } from "@/app/client"; import { PageHeader } from "@/components/general/PageHeader"; import { PageContent } from "@/components/general/PageContent"; @@ -30,7 +30,7 @@ export async function generateMetadata( return null; } - const index = data.page as SponsorsPage; + const index = data.page as SponsorsPageFragment; const metadata = await getSeoMetadata(index, parent); return metadata; } @@ -47,13 +47,7 @@ const SponsorsPageFragmentDefinition = graphql(` } sponsors { ... on SponsorBlock { - id - name - logo { - ...Image - } - text - website + ...Sponsor } } } @@ -70,13 +64,15 @@ export default async function Page() { throw new Error("Failed to render /sponsorer"); } - const page = data.page as SponsorsPage; + const page = data.page as SponsorsPageFragment; return (
{page.body && } - + {page.sponsors && ( + + )}
); } diff --git a/web/src/components/blocks/AccordionBlock.tsx b/web/src/components/blocks/AccordionBlock.tsx index 1aee2a8..ce58dfe 100644 --- a/web/src/components/blocks/AccordionBlock.tsx +++ b/web/src/components/blocks/AccordionBlock.tsx @@ -1,15 +1,26 @@ -import { AccordionBlock as AccordionBlockType } from "@/gql/graphql"; +import { graphql } from "@/gql"; +import { type AccordionBlockFragment } from "@/gql/graphql"; import { Blocks } from "./Blocks"; import { Accordion } from "@/components/general/Accordion"; +const AccordionBlockFragmentDefinition = graphql(` + fragment AccordionBlock on AccordionBlock { + heading + body { + id + blockType + } + } +`); + export const AccordionBlock = ({ block, }: { - block: AccordionBlockType; + block: AccordionBlockFragment; }) => { return ( ); -}; \ No newline at end of file +}; diff --git a/web/src/components/blocks/ContactEntityBlock.tsx b/web/src/components/blocks/ContactEntityBlock.tsx index 51637b1..abc4a27 100644 --- a/web/src/components/blocks/ContactEntityBlock.tsx +++ b/web/src/components/blocks/ContactEntityBlock.tsx @@ -1,15 +1,33 @@ -import { ContactEntityBlock as ContactEntityBlockType } from "@/gql/graphql"; +import { graphql, unmaskFragment } from "@/gql"; +import { type ContactEntityBlockFragment } from "@/gql/graphql"; import styles from "./contactEntityBlock.module.scss"; -import { formatNorwegianPhoneNumber, formatPhoneE164 } from "@/lib/common"; +import { + ContactEntityFragmentDefinition, + ImageFragmentDefinition, + formatNorwegianPhoneNumber, + formatPhoneE164, +} from "@/lib/common"; import { Icon } from "../general/Icon"; import { Image } from "../general/Image"; +const ContactEntityBlockFragmentDefinition = graphql(` + fragment ContactEntityBlock on ContactEntityBlock { + contactEntity { + ...ContactEntity + } + } +`); + export const ContactEntityBlock = ({ block, }: { - block: ContactEntityBlockType; + block: ContactEntityBlockFragment; }) => { - const contact = block?.contactEntity; + const contact = unmaskFragment( + ContactEntityFragmentDefinition, + block?.contactEntity + ); + const image = unmaskFragment(ImageFragmentDefinition, contact?.image); if (!contact) { return <>; @@ -21,18 +39,18 @@ export const ContactEntityBlock = ({ return (
  • - {!contact.image && ( + {!image && ( )} - {contact.image && ( + {image && ( {contact.image.alt diff --git a/web/src/components/blocks/ContactListBlock.tsx b/web/src/components/blocks/ContactListBlock.tsx index ed40884..e83bbf5 100644 --- a/web/src/components/blocks/ContactListBlock.tsx +++ b/web/src/components/blocks/ContactListBlock.tsx @@ -1,11 +1,25 @@ -import { ContactListBlock as ContactListBlockType } from "@/gql/graphql"; +import { graphql } from "@/gql"; +import { type ContactListBlockFragment } from "@/gql/graphql"; import styles from "./contactListBlock.module.scss"; import { Blocks } from "./Blocks"; +const ContactListBlockFragmentDefinition = graphql(` + fragment ContactListBlock on ContactListBlock { + items { + blockType + ... on ContactEntityBlock { + contactEntity { + ...ContactEntity + } + } + } + } +`); + export const ContactListBlock = ({ block, }: { - block: ContactListBlockType; + block: ContactListBlockFragment; }) => { return (
      diff --git a/web/src/components/blocks/ContactSection.tsx b/web/src/components/blocks/ContactSection.tsx index a7c3981..e58ec58 100644 --- a/web/src/components/blocks/ContactSection.tsx +++ b/web/src/components/blocks/ContactSection.tsx @@ -1,11 +1,37 @@ -import { ContactSectionBlock as ContactSectionBlockType } from "@/gql/graphql"; +import { graphql } from "@/gql"; +import { + type ContactSectionBlockFragment, + type ContactSubsectionBlockFragment, +} from "@/gql/graphql"; import styles from "./contactSection.module.scss"; import { Blocks } from "./Blocks"; +const ContactSectionBlockFragmentDefinition = graphql(` + fragment ContactSectionBlock on ContactSectionBlock { + title + text + blocks { + id + blockType + } + } +`); + +const ContactSubsectionBlockFragmentDefinition = graphql(` + fragment ContactSubsectionBlock on ContactSubsectionBlock { + title + text + blocks { + id + blockType + } + } +`); + export const ContactSectionBlock = ({ block, }: { - block: ContactSectionBlockType; + block: ContactSectionBlockFragment; }) => { return (
      @@ -24,7 +50,7 @@ export const ContactSectionBlock = ({ export const ContactSubsectionBlock = ({ block, }: { - block: ContactSectionBlockType; + block: ContactSubsectionBlockFragment; }) => { return (
      diff --git a/web/src/components/blocks/EmbedBlock.tsx b/web/src/components/blocks/EmbedBlock.tsx index e0974a5..b112d67 100644 --- a/web/src/components/blocks/EmbedBlock.tsx +++ b/web/src/components/blocks/EmbedBlock.tsx @@ -1,7 +1,16 @@ -import { EmbedBlock as EmbedBlockType } from "@/gql/graphql"; +import { graphql } from "@/gql"; +import { type EmbedBlockFragment } from "@/gql/graphql"; import styles from "./embedBlock.module.scss"; -export const EmbedBlock = ({ block }: { block: EmbedBlockType }) => { +const EmbedBlockFragmentDefinition = graphql(` + fragment EmbedBlock on EmbedBlock { + url + embed + rawEmbed + } +`); + +export const EmbedBlock = ({ block }: { block: EmbedBlockFragment }) => { if (!block.embed) { return <>; } @@ -18,7 +27,7 @@ export const EmbedBlock = ({ block }: { block: EmbedBlockType }) => { */ let embedData: any = {}; try { - embedData = JSON.parse(block.rawEmbed); + embedData = block.rawEmbed ? JSON.parse(block.rawEmbed) : {}; } catch (e) { embedData = {}; } diff --git a/web/src/components/blocks/FactBoxBlock.tsx b/web/src/components/blocks/FactBoxBlock.tsx index 72f2d02..3252b0c 100644 --- a/web/src/components/blocks/FactBoxBlock.tsx +++ b/web/src/components/blocks/FactBoxBlock.tsx @@ -1,14 +1,18 @@ -import { FactBoxBlock as FactBoxBlockType } from "@/gql/graphql"; +import { graphql } from "@/gql"; +import { type FactBoxBlockFragment } from "@/gql/graphql"; import styles from "./factBoxBlock.module.scss"; -type FactBoxBlockTypeWithAlias = FactBoxBlockType & { - factBoxBody?: string; -}; +const FactBoxBlockFragmentDefinition = graphql(` + fragment FactBoxBlock on FactBoxBlock { + backgroundColor + factBoxBody: body + } +`); export const FactBoxBlock = ({ block, }: { - block: FactBoxBlockTypeWithAlias; + block: FactBoxBlockFragment; }) => { if (!block.factBoxBody) { return <>; diff --git a/web/src/components/blocks/FeaturedBlock.tsx b/web/src/components/blocks/FeaturedBlock.tsx index 7b185b4..537f51d 100644 --- a/web/src/components/blocks/FeaturedBlock.tsx +++ b/web/src/components/blocks/FeaturedBlock.tsx @@ -1,22 +1,47 @@ -import { FeaturedBlock as FeaturedBlockType } from "@/gql/graphql"; +import { graphql, unmaskFragment } from "@/gql"; +import { type FeaturedBlockFragment } from "@/gql/graphql"; import Link from "next/link"; import { Image } from "@/components/general/Image"; +import { ImageFragmentDefinition } from "@/lib/common"; import styles from "./featuredBlock.module.scss"; -// the 'text' field has been aliased to 'featuredBlockText' and i'm -// using codegen the wrong way. let's specify the field here and move on -type FeaturedBlockTypeWithAlias = FeaturedBlockType & { - featuredBlockText: string; -}; +const FeaturedBlockFragmentDefinition = graphql(` + fragment FeaturedBlock on FeaturedBlock { + title + featuredBlockText: text + linkText + imagePosition + backgroundColor + featuredPage { + contentType + pageType + url + ... on EventPage { + featuredImage { + ...Image + } + } + ... on NewsPage { + featuredImage { + ...Image + } + } + } + featuredImageOverride { + ...Image + } + } +`); export const FeaturedBlock = ({ block, }: { - block: FeaturedBlockTypeWithAlias; + block: FeaturedBlockFragment; }) => { - const image = !!block.featuredImageOverride - ? block.featuredImageOverride - : null; + const image = unmaskFragment( + ImageFragmentDefinition, + block.featuredImageOverride + ); // TODO: fetch image from target page return ( diff --git a/web/src/components/blocks/HorizontalRuleBlock.tsx b/web/src/components/blocks/HorizontalRuleBlock.tsx index 3de28bf..72e13de 100644 --- a/web/src/components/blocks/HorizontalRuleBlock.tsx +++ b/web/src/components/blocks/HorizontalRuleBlock.tsx @@ -1,11 +1,18 @@ -import { HorizontalRuleBlock as HorizontalRuleBlockType } from "@/gql/graphql"; +import { graphql } from "@/gql"; +import { type HorizontalRuleBlockFragment } from "@/gql/graphql"; import { Image } from "@/components/general/Image"; import styles from "./horizontalRuleBlock.module.scss"; +const HorizontalRuleBlockFragmentDefinition = graphql(` + fragment HorizontalRuleBlock on HorizontalRuleBlock { + color + } +`); + export const HorizontalRuleBlock = ({ block, }: { - block: HorizontalRuleBlockType; + block: HorizontalRuleBlockFragment; }) => { const knownColors = [ "deepBrick", diff --git a/web/src/components/blocks/ImageSliderBlock.tsx b/web/src/components/blocks/ImageSliderBlock.tsx index 1b57401..084ef61 100644 --- a/web/src/components/blocks/ImageSliderBlock.tsx +++ b/web/src/components/blocks/ImageSliderBlock.tsx @@ -1,8 +1,30 @@ "use client"; -import { ImageSliderBlock as ImageSliderBlockType } from "@/gql/graphql"; +import { graphql, unmaskFragment, type FragmentType } from "@/gql"; +import { type ImageSliderBlockFragment } from "@/gql/graphql"; import { ImageFigure } from "@/components/general/Image"; +import { ImageFragmentDefinition } from "@/lib/common"; import styles from "./imageSliderBlock.module.scss"; +const ImageSliderItemFragmentDefinition = graphql(` + fragment ImageSliderItem on ImageSliderItemBlock { + image { + ...Image + } + text + } +`); + +export const ImageSliderBlockFragmentDefinition = graphql(` + fragment ImageSliderBlock on ImageSliderBlock { + images { + __typename + ... on ImageSliderItemBlock { + ...ImageSliderItem + } + } + } +`); + // import swiper modules & styles import { Swiper, SwiperSlide } from "swiper/react"; import { Pagination, Navigation } from "swiper/modules"; @@ -11,17 +33,42 @@ import "swiper/css/pagination"; import "swiper/css/navigation"; import "./swiper.scss"; +const Slide = ({ + item: maskedItem, +}: { + item: FragmentType; +}) => { + const item = unmaskFragment(ImageSliderItemFragmentDefinition, maskedItem); + const image = unmaskFragment(ImageFragmentDefinition, item.image); + return ( + + ); +}; + export const ImageSliderBlock = ({ block, hero, - pageContent + pageContent, }: { - block: ImageSliderBlockType | any; + block: ImageSliderBlockFragment; hero?: boolean; pageContent?: boolean; }) => { return ( -
      +
      - {block.images && - block.images.map((imageItem: any, index: number) => ( + {block.images?.map((item, index) => { + if (item?.__typename !== "ImageSliderItemBlock") { + return null; + } + return ( - + - ))} + ); + })}
      ); diff --git a/web/src/components/blocks/ImageWithTextBlock.tsx b/web/src/components/blocks/ImageWithTextBlock.tsx index bb0d747..313e83f 100644 --- a/web/src/components/blocks/ImageWithTextBlock.tsx +++ b/web/src/components/blocks/ImageWithTextBlock.tsx @@ -1,18 +1,31 @@ -import { ImageWithTextBlock as ImageWithTextBlockType } from "@/gql/graphql"; +import { graphql, unmaskFragment } from "@/gql"; +import { type ImageWithTextBlockFragment } from "@/gql/graphql"; import { ImageFigure } from "@/components/general/Image"; +import { ImageFragmentDefinition } from "@/lib/common"; + +const ImageWithTextBlockFragmentDefinition = graphql(` + fragment ImageWithTextBlock on ImageWithTextBlock { + image { + ...Image + } + imageFormat + text + } +`); export function ImageWithTextBlock({ block, }: { - block: ImageWithTextBlockType; + block: ImageWithTextBlockFragment; }) { + const image = unmaskFragment(ImageFragmentDefinition, block.image); return ( diff --git a/web/src/components/blocks/PageSection.tsx b/web/src/components/blocks/PageSection.tsx index de13aaa..6e96689 100644 --- a/web/src/components/blocks/PageSection.tsx +++ b/web/src/components/blocks/PageSection.tsx @@ -1,13 +1,26 @@ -import { PageSectionBlock as PageSectionBlockType } from "@/gql/graphql"; +import { graphql } from "@/gql"; +import { type PageSectionBlockFragment } from "@/gql/graphql"; import styles from "./pageSection.module.scss"; import { Blocks } from "./Blocks"; import slugify from "@sindresorhus/slugify"; import { DecorativeIcon } from "../general/Icon"; +const PageSectionBlockFragmentDefinition = graphql(` + fragment PageSectionBlock on PageSectionBlock { + title + backgroundColor + icon + body { + id + blockType + } + } +`); + export const PageSectionBlock = ({ block, }: { - block: PageSectionBlockType; + block: PageSectionBlockFragment; }) => { const anchor = slugify(block.title); @@ -31,7 +44,7 @@ export const PageSectionBlock = ({ export const PageSectionNavigationBlock = ({ sections, }: { - sections: PageSectionBlockType[]; + sections: PageSectionBlockFragment[]; }) => { if (!sections.length) { return <>; diff --git a/web/src/components/blocks/RichTextBlock.tsx b/web/src/components/blocks/RichTextBlock.tsx index 12ff1d1..aa43cae 100644 --- a/web/src/components/blocks/RichTextBlock.tsx +++ b/web/src/components/blocks/RichTextBlock.tsx @@ -1,6 +1,15 @@ +import { graphql } from "@/gql"; +import { type RichTextBlockFragment } from "@/gql/graphql"; import styles from "./richTextBlock.module.scss"; -export const RichTextBlock = ({ block }: any) => { +const RichTextBlockFragmentDefinition = graphql(` + fragment RichTextBlock on RichTextBlock { + rawValue + value + } +`); + +export const RichTextBlock = ({ block }: { block: RichTextBlockFragment }) => { return (
      { const [mode, setMode] = useQueryState( "mode", - parseAsStringLiteral(["list", "calendar"]).withDefault("list") + parseAsStringLiteral(["list", "calendar"]).withDefault("list"), ); const [categories, setCategories] = useQueryState( "category", - parseAsArrayOf(parseAsString, ",") + parseAsArrayOf(parseAsString, ","), ); const [organizer, setOrganizer] = useQueryState("organizer", parseAsString); const [venue, setVenue] = useQueryState("venue", parseAsString); @@ -75,13 +78,15 @@ export const EventContainer = ({ Filtering on an organizer with no upcoming events will work, and in that case it's included in the dropdown */ + const allOrganizers = unmaskFragment( + EventOrganizerFragmentDefinition, + events.flatMap((x) => x.organizers), + ); const uniqueOrganizers: string[] = unique( - events - .map((x) => x.organizers) - .flat() + allOrganizers .filter((x) => x.__typename === "EventOrganizer") .map((x) => x.slug) - .filter((x) => typeof x === "string" && x !== "") + .filter((x) => typeof x === "string" && x !== ""), ); const filterableOrganizers = uniqueOrganizers .map((slug) => eventOrganizers.find((haystack) => haystack.slug === slug)) @@ -118,11 +123,11 @@ export const EventContainer = ({ .flat() .filter((x) => x.venue?.__typename === "VenuePage") .map((x) => x.venue?.slug) - .filter((x) => typeof x === "string") + .filter((x) => typeof x === "string"), ); const filterableVenues = venues .filter( - (x) => venueSlugsWithUpcomingEvents.includes(x.slug) || x.slug === venue + (x) => venueSlugsWithUpcomingEvents.includes(x.slug) || x.slug === venue, ) .map((x) => venues.find((haystack) => haystack.slug === x.slug)) .filter((x) => x !== undefined) as VenueFragment[]; @@ -134,27 +139,32 @@ export const EventContainer = ({ } }, [venues, venue]); - const filteredEvents = events - .filter( - (x) => - !organizer || - x.organizers.map((organizer) => organizer.slug).includes(organizer) - ) - .filter( - (x) => - !categories || - x.categories - .map((eventCategory) => eventCategory.slug) - .filter((x) => categories.includes(x)).length !== 0 - ) - .filter( - (x) => - !venue || - x.occurrences - .map((occurrence) => occurrence.venue?.slug) - .filter((x) => typeof x === "string") - .includes(venue) - ); + const filteredEvents = events.filter((event) => { + if (organizer) { + const organizers = unmaskFragment( + EventOrganizerFragmentDefinition, + event.organizers, + ); + if (!organizers.some((o) => o.slug === organizer)) { + return false; + } + } + if (categories) { + const eventCategories = unmaskFragment( + EventCategoryFragmentDefinition, + event.categories, + ); + if (!eventCategories.some((c) => categories.includes(c.slug))) { + return false; + } + } + if (venue) { + if (!event.occurrences.some((occ) => occ.venue?.slug === venue)) { + return false; + } + } + return true; + }); const [showFilter, setShowFilter] = useState(false); function toggleFilter() { @@ -302,12 +312,12 @@ function maybeYear(yearMonthString: string) { const EventCalendar = ({ events }: { events: EventFragment[] }) => { const futureSingularEvents = getSingularEvents(events).filter( - (x) => x.occurrence?.start && isTodayOrFuture(x.occurrence.start) + (x) => x.occurrence?.start && isTodayOrFuture(x.occurrence.start), ); const eventsByDate = organizeEventsInCalendar(futureSingularEvents); const yearMonths = Object.keys(eventsByDate); const [visibleYearMonths, setVisibleYearMonths] = useState( - yearMonths.slice(0, 2) + yearMonths.slice(0, 2), ); const toggleYearMonth = (yearMonth: string) => { @@ -327,9 +337,9 @@ const EventCalendar = ({ events }: { events: EventFragment[] }) => { yearMonthSum + Object.values(week).reduce( (weekSum, day) => weekSum + day.length, - 0 + 0, ), - 0 + 0, ); return ( diff --git a/web/src/components/events/EventHeader.tsx b/web/src/components/events/EventHeader.tsx index 5ada90c..533f4cf 100644 --- a/web/src/components/events/EventHeader.tsx +++ b/web/src/components/events/EventHeader.tsx @@ -1,19 +1,30 @@ -import { EventFragment } from "@/lib/event"; +import { unmaskFragment } from "@/gql"; +import { + EventCategoryFragmentDefinition, + EventFragment, +} from "@/lib/event"; +import { ImageFragmentDefinition } from "@/lib/common"; import styles from "./eventHeader.module.scss"; import { ImageFigure } from "@/components/general/Image"; -import { Breadcrumb } from "../general/Breadcrumb"; import { Icon } from "../general/Icon"; export const EventHeader = ({ event }: { event: EventFragment }) => { - const featuredImage: any = event.featuredImage; + const featuredImage = unmaskFragment( + ImageFragmentDefinition, + event.featuredImage + ); + const categories = unmaskFragment( + EventCategoryFragmentDefinition, + event.categories + ); return (
      {/**/} - {event.categories.length > 0 && ( + {categories.length > 0 && (
      - {event.categories.map((category) => ( + {categories.map((category) => (
      {category.name}
      @@ -33,7 +44,7 @@ export const EventHeader = ({ event }: { event: EventFragment }) => { {featuredImage && ( { - const total = event.organizers.length; + const organizers = unmaskFragment( + EventOrganizerFragmentDefinition, + event.organizers + ); + const total = organizers.length; return (
      - {event.organizers.map((organizer, index) => { + {organizers.map((organizer, index) => { const url = organizer.association?.url ?? organizer.externalUrl ?? null; const hasValidUrl = typeof url === "string" && diff --git a/web/src/components/general/PageHeader.tsx b/web/src/components/general/PageHeader.tsx index 9d60539..6f9ba5c 100644 --- a/web/src/components/general/PageHeader.tsx +++ b/web/src/components/general/PageHeader.tsx @@ -6,7 +6,7 @@ export const PageHeader = ({ align }: { heading: string; - lead?: string; + lead?: string | null; align?: "center" | "left" }) => { return ( diff --git a/web/src/components/news/NewsItem.tsx b/web/src/components/news/NewsItem.tsx index fab7a26..86d9e6e 100644 --- a/web/src/components/news/NewsItem.tsx +++ b/web/src/components/news/NewsItem.tsx @@ -21,9 +21,11 @@ export const NewsItem = ({ news }: { news: NewsFragment }) => { )}
      -

      - {formatDate(news.firstPublishedAt, 'd. MMMM yyyy')} -

      + {news.firstPublishedAt && ( +

      + {formatDate(news.firstPublishedAt, "d. MMMM yyyy")} +

      + )}

      {news.title}

      {news.excerpt}

      diff --git a/web/src/components/sponsor/SponsorList.tsx b/web/src/components/sponsor/SponsorList.tsx index 2143eed..24f175b 100644 --- a/web/src/components/sponsor/SponsorList.tsx +++ b/web/src/components/sponsor/SponsorList.tsx @@ -1,10 +1,24 @@ -import { SponsorBlock } from "@/gql/graphql"; -import { Blocks } from "../blocks/Blocks"; +import { graphql, unmaskFragment } from "@/gql"; +import { type SponsorFragment } from "@/gql/graphql"; import { Image } from "../general/Image"; +import { ImageFragmentDefinition } from "@/lib/common"; import styles from "./sponsorList.module.scss"; -const SponsorItem = ({ sponsor }: { sponsor: SponsorBlock }) => { - const { name, logo, website, text } = sponsor; +export const SponsorFragmentDefinition = graphql(` + fragment Sponsor on SponsorBlock { + id + name + logo { + ...Image + } + text + website + } +`); + +const SponsorItem = ({ sponsor }: { sponsor: SponsorFragment }) => { + const { name, logo: maskedLogo, website, text } = sponsor; + const logo = unmaskFragment(ImageFragmentDefinition, maskedLogo); return (
    • @@ -38,7 +52,7 @@ const SponsorItem = ({ sponsor }: { sponsor: SponsorBlock }) => { ); }; -export const SponsorList = ({ sponsors }: { sponsors: SponsorBlock[] }) => { +export const SponsorList = ({ sponsors }: { sponsors: SponsorFragment[] }) => { return (
        diff --git a/web/src/gql/fragment-masking.ts b/web/src/gql/fragment-masking.ts index aca71b1..f544108 100644 --- a/web/src/gql/fragment-masking.ts +++ b/web/src/gql/fragment-masking.ts @@ -16,46 +16,46 @@ export type FragmentType> : never; // return non-nullable if `fragmentType` is non-nullable -export function useFragment( +export function unmaskFragment( _documentNode: DocumentTypeDecoration, fragmentType: FragmentType> ): TType; // return nullable if `fragmentType` is undefined -export function useFragment( +export function unmaskFragment( _documentNode: DocumentTypeDecoration, fragmentType: FragmentType> | undefined ): TType | undefined; // return nullable if `fragmentType` is nullable -export function useFragment( +export function unmaskFragment( _documentNode: DocumentTypeDecoration, fragmentType: FragmentType> | null ): TType | null; // return nullable if `fragmentType` is nullable or undefined -export function useFragment( +export function unmaskFragment( _documentNode: DocumentTypeDecoration, fragmentType: FragmentType> | null | undefined ): TType | null | undefined; // return array of non-nullable if `fragmentType` is array of non-nullable -export function useFragment( +export function unmaskFragment( _documentNode: DocumentTypeDecoration, fragmentType: Array>> ): Array; // return array of nullable if `fragmentType` is array of nullable -export function useFragment( +export function unmaskFragment( _documentNode: DocumentTypeDecoration, fragmentType: Array>> | null | undefined ): Array | null | undefined; // return readonly array of non-nullable if `fragmentType` is array of non-nullable -export function useFragment( +export function unmaskFragment( _documentNode: DocumentTypeDecoration, fragmentType: ReadonlyArray>> ): ReadonlyArray; // return readonly array of nullable if `fragmentType` is array of nullable -export function useFragment( +export function unmaskFragment( _documentNode: DocumentTypeDecoration, fragmentType: ReadonlyArray>> | null | undefined ): ReadonlyArray | null | undefined; -export function useFragment( +export function unmaskFragment( _documentNode: DocumentTypeDecoration, fragmentType: FragmentType> | Array>> | ReadonlyArray>> | null | undefined ): TType | Array | ReadonlyArray | null | undefined { diff --git a/web/src/gql/gql.ts b/web/src/gql/gql.ts index c77a264..bbf3116 100644 --- a/web/src/gql/gql.ts +++ b/web/src/gql/gql.ts @@ -32,28 +32,45 @@ type Documents = { "\n query allVenueSlugs {\n pages(contentType: \"venues.VenuePage\", limit: 100) {\n id\n slug\n }\n }\n ": typeof types.AllVenueSlugsDocument, "\n query venueIndex {\n index: venueIndex {\n ... on VenueIndex {\n ...VenueIndex\n }\n }\n venues: pages(contentType: \"venues.VenuePage\", limit: 100) {\n ... on VenuePage {\n ...Venue\n }\n }\n }\n": typeof types.VenueIndexDocument, "\n fragment VenueIndex on VenueIndex {\n ... on VenueIndex {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n }\n }\n": typeof types.VenueIndexFragmentDoc, - "\n fragment Venue on VenuePage {\n __typename\n id\n slug\n title\n seoTitle\n searchDescription\n images {\n ...Blocks\n }\n body {\n ...Blocks\n }\n featuredImage {\n ...Image\n }\n showAsBookable\n showInOverview\n floor\n preposition\n usedFor\n techSpecsUrl\n capabilityAudio\n capabilityAudioVideo\n capabilityBar\n capabilityLighting\n capacityLegal\n capacityStanding\n capacitySitting\n }\n": typeof types.VenueFragmentDoc, + "\n fragment Venue on VenuePage {\n __typename\n id\n slug\n title\n seoTitle\n searchDescription\n images {\n __typename\n ... on ImageSliderBlock {\n ...ImageSliderBlock\n }\n }\n body {\n ...Blocks\n }\n featuredImage {\n ...Image\n }\n showAsBookable\n showInOverview\n floor\n preposition\n usedFor\n techSpecsUrl\n capabilityAudio\n capabilityAudioVideo\n capabilityBar\n capabilityLighting\n capacityLegal\n capacityStanding\n capacitySitting\n }\n": typeof types.VenueFragmentDoc, "\n fragment Home on HomePage {\n ... on HomePage {\n featuredEvents {\n id\n }\n }\n }\n": typeof types.HomeFragmentDoc, "\n query home {\n events: eventIndex {\n ... on EventIndex {\n futureEvents {\n ... on EventPage {\n ...Event\n }\n }\n }\n }\n home: page(contentType: \"home.HomePage\", urlPath: \"/home/\") {\n ... on HomePage {\n ...Home\n }\n }\n news: pages(contentType: \"news.newsPage\", order: \"-first_published_at\", limit: 4) {\n ... on NewsPage {\n ...News\n }\n }\n }\n ": typeof types.HomeDocument, "\n query search($query: String) {\n results: search(query: $query) {\n __typename\n ... on PageInterface {\n slug\n }\n ... on NewsPage {\n id\n title\n }\n ... on EventPage {\n id\n title\n }\n ... on GenericPage {\n id\n title\n }\n ... on VenuePage {\n id\n title\n }\n ... on AssociationPage {\n id\n title\n associationType\n }\n }\n }\n ": typeof types.SearchDocument, "\n query sponsors {\n page: sponsorsPage {\n ... on SponsorsPage {\n ...SponsorsPage\n }\n }\n }\n": typeof types.SponsorsDocument, - "\n fragment SponsorsPage on SponsorsPage {\n ... on SponsorsPage {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n sponsors {\n ... on SponsorBlock {\n id\n name\n logo {\n ...Image\n }\n text\n website\n }\n }\n }\n }\n": typeof types.SponsorsPageFragmentDoc, + "\n fragment SponsorsPage on SponsorsPage {\n ... on SponsorsPage {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n sponsors {\n ... on SponsorBlock {\n ...Sponsor\n }\n }\n }\n }\n": typeof types.SponsorsPageFragmentDoc, "\n query venueRentalIndex {\n index: venueRentalIndex {\n ... on VenueRentalIndex {\n ...VenueRentalIndex\n }\n }\n venues: pages(contentType: \"venues.VenuePage\", limit: 100) {\n ... on VenuePage {\n ...Venue\n }\n }\n }\n": typeof types.VenueRentalIndexDocument, "\n fragment VenueRentalIndex on VenueRentalIndex {\n ... on VenueRentalIndex {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n }\n }\n": typeof types.VenueRentalIndexFragmentDoc, - "\n fragment LeafBlocks on StreamFieldInterface {\n id\n blockType\n field\n ... on RichTextBlock {\n rawValue\n value\n }\n ... on ImageWithTextBlock {\n image {\n ...Image\n }\n imageFormat\n text\n }\n ... on ImageSliderBlock {\n images {\n ... on ImageSliderItemBlock {\n image {\n ...Image\n }\n text\n }\n }\n }\n ... on HorizontalRuleBlock {\n color\n }\n ... on FeaturedBlock {\n title\n featuredBlockText: text\n linkText\n imagePosition\n backgroundColor\n featuredPage {\n contentType\n pageType\n url\n ... on EventPage {\n featuredImage {\n ...Image\n }\n }\n ... on NewsPage {\n featuredImage {\n ...Image\n }\n }\n }\n featuredImageOverride {\n ...Image\n }\n }\n ... on ContactListBlock {\n items {\n blockType\n ... on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n }\n }\n ... on EmbedBlock {\n url\n embed\n rawEmbed\n }\n ... on FactBoxBlock {\n backgroundColor\n factBoxBody: body\n }\n }\n": typeof types.LeafBlocksFragmentDoc, - "\n fragment OneLevelOfBlocks on StreamFieldInterface {\n ...LeafBlocks\n ... on AccordionBlock {\n heading\n body {\n ...LeafBlocks\n }\n }\n ... on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n ...LeafBlocks\n }\n }\n }\n": typeof types.OneLevelOfBlocksFragmentDoc, - "\n fragment Blocks on StreamFieldInterface {\n ... on AccordionBlock {\n heading\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on ContactSectionBlock {\n title\n text\n blocks {\n ... on ContactSubsectionBlock {\n title\n text\n blocks {\n ...OneLevelOfBlocks\n }\n }\n ...OneLevelOfBlocks\n }\n }\n ...OneLevelOfBlocks\n }\n": typeof types.BlocksFragmentDoc, + "\n fragment AccordionBlock on AccordionBlock {\n heading\n body {\n id\n blockType\n }\n }\n": typeof types.AccordionBlockFragmentDoc, + "\n fragment ContactEntityBlock on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n": typeof types.ContactEntityBlockFragmentDoc, + "\n fragment ContactListBlock on ContactListBlock {\n items {\n blockType\n ... on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n }\n }\n": typeof types.ContactListBlockFragmentDoc, + "\n fragment ContactSectionBlock on ContactSectionBlock {\n title\n text\n blocks {\n id\n blockType\n }\n }\n": typeof types.ContactSectionBlockFragmentDoc, + "\n fragment ContactSubsectionBlock on ContactSubsectionBlock {\n title\n text\n blocks {\n id\n blockType\n }\n }\n": typeof types.ContactSubsectionBlockFragmentDoc, + "\n fragment EmbedBlock on EmbedBlock {\n url\n embed\n rawEmbed\n }\n": typeof types.EmbedBlockFragmentDoc, + "\n fragment FactBoxBlock on FactBoxBlock {\n backgroundColor\n factBoxBody: body\n }\n": typeof types.FactBoxBlockFragmentDoc, + "\n fragment FeaturedBlock on FeaturedBlock {\n title\n featuredBlockText: text\n linkText\n imagePosition\n backgroundColor\n featuredPage {\n contentType\n pageType\n url\n ... on EventPage {\n featuredImage {\n ...Image\n }\n }\n ... on NewsPage {\n featuredImage {\n ...Image\n }\n }\n }\n featuredImageOverride {\n ...Image\n }\n }\n": typeof types.FeaturedBlockFragmentDoc, + "\n fragment HorizontalRuleBlock on HorizontalRuleBlock {\n color\n }\n": typeof types.HorizontalRuleBlockFragmentDoc, + "\n fragment ImageSliderItem on ImageSliderItemBlock {\n image {\n ...Image\n }\n text\n }\n": typeof types.ImageSliderItemFragmentDoc, + "\n fragment ImageSliderBlock on ImageSliderBlock {\n images {\n __typename\n ... on ImageSliderItemBlock {\n ...ImageSliderItem\n }\n }\n }\n": typeof types.ImageSliderBlockFragmentDoc, + "\n fragment ImageWithTextBlock on ImageWithTextBlock {\n image {\n ...Image\n }\n imageFormat\n text\n }\n": typeof types.ImageWithTextBlockFragmentDoc, + "\n fragment PageSectionBlock on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n id\n blockType\n }\n }\n": typeof types.PageSectionBlockFragmentDoc, + "\n fragment RichTextBlock on RichTextBlock {\n rawValue\n value\n }\n": typeof types.RichTextBlockFragmentDoc, + "\n fragment Sponsor on SponsorBlock {\n id\n name\n logo {\n ...Image\n }\n text\n website\n }\n": typeof types.SponsorFragmentDoc, + "\n fragment LeafBlocks on StreamFieldInterface {\n id\n blockType\n field\n ... on RichTextBlock {\n ...RichTextBlock\n }\n ... on ImageWithTextBlock {\n ...ImageWithTextBlock\n }\n ... on ImageSliderBlock {\n ...ImageSliderBlock\n }\n ... on HorizontalRuleBlock {\n ...HorizontalRuleBlock\n }\n ... on FeaturedBlock {\n ...FeaturedBlock\n }\n ... on ContactListBlock {\n ...ContactListBlock\n }\n ... on EmbedBlock {\n ...EmbedBlock\n }\n ... on FactBoxBlock {\n ...FactBoxBlock\n }\n }\n": typeof types.LeafBlocksFragmentDoc, + "\n fragment OneLevelOfBlocks on StreamFieldInterface {\n ...LeafBlocks\n ... on AccordionBlock {\n ...AccordionBlock\n body {\n ...LeafBlocks\n }\n }\n ... on PageSectionBlock {\n ...PageSectionBlock\n body {\n ...LeafBlocks\n }\n }\n }\n": typeof types.OneLevelOfBlocksFragmentDoc, + "\n fragment Blocks on StreamFieldInterface {\n ...OneLevelOfBlocks\n ... on AccordionBlock {\n ...AccordionBlock\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on PageSectionBlock {\n ...PageSectionBlock\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on ContactSectionBlock {\n ...ContactSectionBlock\n blocks {\n ...OneLevelOfBlocks\n ... on ContactSubsectionBlock {\n ...ContactSubsectionBlock\n blocks {\n ...OneLevelOfBlocks\n }\n }\n }\n }\n }\n": typeof types.BlocksFragmentDoc, "\n fragment Image on CustomImage {\n id\n url\n width\n height\n alt\n attribution\n }\n": typeof types.ImageFragmentDoc, "\n fragment ContactEntity on ContactEntity {\n id\n name\n contactType\n title\n email\n phoneNumber\n image {\n ...Image\n }\n }\n": typeof types.ContactEntityFragmentDoc, - "\n fragment Event on EventPage {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n subtitle\n lead\n body {\n ...OneLevelOfBlocks\n }\n featuredImage {\n ...Image\n }\n pig\n facebookUrl\n ticketUrl\n free\n priceRegular\n priceMember\n priceStudent\n categories {\n ... on EventCategory {\n name\n slug\n pig\n }\n }\n occurrences(limit: 5000) {\n ... on EventOccurrence {\n __typename\n id\n start\n end\n venue {\n __typename\n id\n slug\n title\n preposition\n url\n }\n venueCustom\n }\n }\n organizers {\n ... on EventOrganizer {\n id\n name\n slug\n externalUrl\n association {\n ... on AssociationPage {\n url\n }\n }\n }\n }\n }\n": typeof types.EventFragmentDoc, + "\n fragment EventCategory on EventCategory {\n __typename\n name\n slug\n pig\n showInFilters\n }\n": typeof types.EventCategoryFragmentDoc, + "\n fragment EventOrganizer on EventOrganizer {\n __typename\n id\n name\n slug\n externalUrl\n association {\n ... on AssociationPage {\n url\n }\n }\n }\n": typeof types.EventOrganizerFragmentDoc, + "\n fragment Event on EventPage {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n subtitle\n lead\n body {\n ...OneLevelOfBlocks\n }\n featuredImage {\n ...Image\n }\n pig\n facebookUrl\n ticketUrl\n free\n priceRegular\n priceMember\n priceStudent\n categories {\n ... on EventCategory {\n ...EventCategory\n }\n }\n occurrences(limit: 5000) {\n ... on EventOccurrence {\n __typename\n id\n start\n end\n venue {\n __typename\n id\n slug\n title\n preposition\n url\n }\n venueCustom\n }\n }\n organizers {\n ... on EventOrganizer {\n ...EventOrganizer\n }\n }\n }\n": typeof types.EventFragmentDoc, "\n fragment EventIndex on EventIndex {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n }\n": typeof types.EventIndexFragmentDoc, "\n query eventIndexMetadata {\n index: eventIndex {\n ... on EventIndex {\n ...EventIndex\n }\n }\n }\n": typeof types.EventIndexMetadataDocument, - "\n query futureEvents {\n index: eventIndex {\n ... on EventIndex {\n ...EventIndex\n }\n }\n events: eventIndex {\n ... on EventIndex {\n futureEvents {\n ... on EventPage {\n ...Event\n }\n }\n }\n }\n eventCategories: eventCategories(limit: 5000) {\n ... on EventCategory {\n name\n slug\n showInFilters\n }\n }\n eventOrganizers: eventOrganizers(limit: 5000) {\n ... on EventOrganizer {\n id\n name\n slug\n }\n }\n venues: pages(contentType: \"venues.VenuePage\") {\n ... on VenuePage {\n id\n title\n slug\n preposition\n }\n }\n }\n": typeof types.FutureEventsDocument, + "\n query futureEvents {\n index: eventIndex {\n ... on EventIndex {\n ...EventIndex\n }\n }\n events: eventIndex {\n ... on EventIndex {\n futureEvents {\n ... on EventPage {\n ...Event\n }\n }\n }\n }\n eventCategories: eventCategories(limit: 5000) {\n ... on EventCategory {\n ...EventCategory\n }\n }\n eventOrganizers: eventOrganizers(limit: 5000) {\n ... on EventOrganizer {\n ...EventOrganizer\n }\n }\n venues: pages(contentType: \"venues.VenuePage\") {\n ... on VenuePage {\n id\n title\n slug\n preposition\n }\n }\n }\n": typeof types.FutureEventsDocument, "\n fragment News on NewsPage {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n firstPublishedAt\n excerpt\n lead\n featuredImage {\n ...Image\n }\n body {\n ...Blocks\n }\n }\n": typeof types.NewsFragmentDoc, "\n fragment NewsIndex on NewsIndex {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n lead\n }\n": typeof types.NewsIndexFragmentDoc, "\n query news {\n index: newsIndex {\n ... on NewsIndex {\n ...NewsIndex\n }\n }\n news: pages(contentType: \"news.NewsPage\", order: \"-first_published_at\", limit: 1000) {\n ... on NewsPage {\n ...News\n }\n }\n }\n": typeof types.NewsDocument, - "\n query openingHoursSets {\n openingHoursSets {\n ...OpeningHoursSetFragment\n }\n }\n": typeof types.OpeningHoursSetsDocument, - "\n fragment OpeningHoursSetFragment on OpeningHoursSet {\n name\n effectiveFrom\n effectiveTo\n announcement\n items {\n id\n function\n week {\n id\n blockType\n ... on OpeningHoursWeekBlock {\n ...OpeningHoursWeekBlock\n }\n }\n }\n }\n": typeof types.OpeningHoursSetFragmentFragmentDoc, + "\n query openingHoursSets {\n openingHoursSets {\n ...OpeningHoursSet\n }\n }\n": typeof types.OpeningHoursSetsDocument, + "\n fragment OpeningHoursSet on OpeningHoursSet {\n name\n effectiveFrom\n effectiveTo\n announcement\n items {\n id\n function\n week {\n __typename\n ... on OpeningHoursWeekBlock {\n ...OpeningHoursWeekBlock\n }\n }\n }\n }\n": typeof types.OpeningHoursSetFragmentDoc, "\n fragment OpeningHoursRangeBlock on OpeningHoursRangeBlock {\n timeFrom\n timeTo\n custom\n }\n": typeof types.OpeningHoursRangeBlockFragmentDoc, "\n fragment OpeningHoursWeekBlock on OpeningHoursWeekBlock {\n monday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n tuesday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n wednesday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n thursday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n friday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n saturday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n sunday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n }\n": typeof types.OpeningHoursWeekBlockFragmentDoc, }; @@ -76,28 +93,45 @@ const documents: Documents = { "\n query allVenueSlugs {\n pages(contentType: \"venues.VenuePage\", limit: 100) {\n id\n slug\n }\n }\n ": types.AllVenueSlugsDocument, "\n query venueIndex {\n index: venueIndex {\n ... on VenueIndex {\n ...VenueIndex\n }\n }\n venues: pages(contentType: \"venues.VenuePage\", limit: 100) {\n ... on VenuePage {\n ...Venue\n }\n }\n }\n": types.VenueIndexDocument, "\n fragment VenueIndex on VenueIndex {\n ... on VenueIndex {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n }\n }\n": types.VenueIndexFragmentDoc, - "\n fragment Venue on VenuePage {\n __typename\n id\n slug\n title\n seoTitle\n searchDescription\n images {\n ...Blocks\n }\n body {\n ...Blocks\n }\n featuredImage {\n ...Image\n }\n showAsBookable\n showInOverview\n floor\n preposition\n usedFor\n techSpecsUrl\n capabilityAudio\n capabilityAudioVideo\n capabilityBar\n capabilityLighting\n capacityLegal\n capacityStanding\n capacitySitting\n }\n": types.VenueFragmentDoc, + "\n fragment Venue on VenuePage {\n __typename\n id\n slug\n title\n seoTitle\n searchDescription\n images {\n __typename\n ... on ImageSliderBlock {\n ...ImageSliderBlock\n }\n }\n body {\n ...Blocks\n }\n featuredImage {\n ...Image\n }\n showAsBookable\n showInOverview\n floor\n preposition\n usedFor\n techSpecsUrl\n capabilityAudio\n capabilityAudioVideo\n capabilityBar\n capabilityLighting\n capacityLegal\n capacityStanding\n capacitySitting\n }\n": types.VenueFragmentDoc, "\n fragment Home on HomePage {\n ... on HomePage {\n featuredEvents {\n id\n }\n }\n }\n": types.HomeFragmentDoc, "\n query home {\n events: eventIndex {\n ... on EventIndex {\n futureEvents {\n ... on EventPage {\n ...Event\n }\n }\n }\n }\n home: page(contentType: \"home.HomePage\", urlPath: \"/home/\") {\n ... on HomePage {\n ...Home\n }\n }\n news: pages(contentType: \"news.newsPage\", order: \"-first_published_at\", limit: 4) {\n ... on NewsPage {\n ...News\n }\n }\n }\n ": types.HomeDocument, "\n query search($query: String) {\n results: search(query: $query) {\n __typename\n ... on PageInterface {\n slug\n }\n ... on NewsPage {\n id\n title\n }\n ... on EventPage {\n id\n title\n }\n ... on GenericPage {\n id\n title\n }\n ... on VenuePage {\n id\n title\n }\n ... on AssociationPage {\n id\n title\n associationType\n }\n }\n }\n ": types.SearchDocument, "\n query sponsors {\n page: sponsorsPage {\n ... on SponsorsPage {\n ...SponsorsPage\n }\n }\n }\n": types.SponsorsDocument, - "\n fragment SponsorsPage on SponsorsPage {\n ... on SponsorsPage {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n sponsors {\n ... on SponsorBlock {\n id\n name\n logo {\n ...Image\n }\n text\n website\n }\n }\n }\n }\n": types.SponsorsPageFragmentDoc, + "\n fragment SponsorsPage on SponsorsPage {\n ... on SponsorsPage {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n sponsors {\n ... on SponsorBlock {\n ...Sponsor\n }\n }\n }\n }\n": types.SponsorsPageFragmentDoc, "\n query venueRentalIndex {\n index: venueRentalIndex {\n ... on VenueRentalIndex {\n ...VenueRentalIndex\n }\n }\n venues: pages(contentType: \"venues.VenuePage\", limit: 100) {\n ... on VenuePage {\n ...Venue\n }\n }\n }\n": types.VenueRentalIndexDocument, "\n fragment VenueRentalIndex on VenueRentalIndex {\n ... on VenueRentalIndex {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n }\n }\n": types.VenueRentalIndexFragmentDoc, - "\n fragment LeafBlocks on StreamFieldInterface {\n id\n blockType\n field\n ... on RichTextBlock {\n rawValue\n value\n }\n ... on ImageWithTextBlock {\n image {\n ...Image\n }\n imageFormat\n text\n }\n ... on ImageSliderBlock {\n images {\n ... on ImageSliderItemBlock {\n image {\n ...Image\n }\n text\n }\n }\n }\n ... on HorizontalRuleBlock {\n color\n }\n ... on FeaturedBlock {\n title\n featuredBlockText: text\n linkText\n imagePosition\n backgroundColor\n featuredPage {\n contentType\n pageType\n url\n ... on EventPage {\n featuredImage {\n ...Image\n }\n }\n ... on NewsPage {\n featuredImage {\n ...Image\n }\n }\n }\n featuredImageOverride {\n ...Image\n }\n }\n ... on ContactListBlock {\n items {\n blockType\n ... on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n }\n }\n ... on EmbedBlock {\n url\n embed\n rawEmbed\n }\n ... on FactBoxBlock {\n backgroundColor\n factBoxBody: body\n }\n }\n": types.LeafBlocksFragmentDoc, - "\n fragment OneLevelOfBlocks on StreamFieldInterface {\n ...LeafBlocks\n ... on AccordionBlock {\n heading\n body {\n ...LeafBlocks\n }\n }\n ... on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n ...LeafBlocks\n }\n }\n }\n": types.OneLevelOfBlocksFragmentDoc, - "\n fragment Blocks on StreamFieldInterface {\n ... on AccordionBlock {\n heading\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on ContactSectionBlock {\n title\n text\n blocks {\n ... on ContactSubsectionBlock {\n title\n text\n blocks {\n ...OneLevelOfBlocks\n }\n }\n ...OneLevelOfBlocks\n }\n }\n ...OneLevelOfBlocks\n }\n": types.BlocksFragmentDoc, + "\n fragment AccordionBlock on AccordionBlock {\n heading\n body {\n id\n blockType\n }\n }\n": types.AccordionBlockFragmentDoc, + "\n fragment ContactEntityBlock on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n": types.ContactEntityBlockFragmentDoc, + "\n fragment ContactListBlock on ContactListBlock {\n items {\n blockType\n ... on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n }\n }\n": types.ContactListBlockFragmentDoc, + "\n fragment ContactSectionBlock on ContactSectionBlock {\n title\n text\n blocks {\n id\n blockType\n }\n }\n": types.ContactSectionBlockFragmentDoc, + "\n fragment ContactSubsectionBlock on ContactSubsectionBlock {\n title\n text\n blocks {\n id\n blockType\n }\n }\n": types.ContactSubsectionBlockFragmentDoc, + "\n fragment EmbedBlock on EmbedBlock {\n url\n embed\n rawEmbed\n }\n": types.EmbedBlockFragmentDoc, + "\n fragment FactBoxBlock on FactBoxBlock {\n backgroundColor\n factBoxBody: body\n }\n": types.FactBoxBlockFragmentDoc, + "\n fragment FeaturedBlock on FeaturedBlock {\n title\n featuredBlockText: text\n linkText\n imagePosition\n backgroundColor\n featuredPage {\n contentType\n pageType\n url\n ... on EventPage {\n featuredImage {\n ...Image\n }\n }\n ... on NewsPage {\n featuredImage {\n ...Image\n }\n }\n }\n featuredImageOverride {\n ...Image\n }\n }\n": types.FeaturedBlockFragmentDoc, + "\n fragment HorizontalRuleBlock on HorizontalRuleBlock {\n color\n }\n": types.HorizontalRuleBlockFragmentDoc, + "\n fragment ImageSliderItem on ImageSliderItemBlock {\n image {\n ...Image\n }\n text\n }\n": types.ImageSliderItemFragmentDoc, + "\n fragment ImageSliderBlock on ImageSliderBlock {\n images {\n __typename\n ... on ImageSliderItemBlock {\n ...ImageSliderItem\n }\n }\n }\n": types.ImageSliderBlockFragmentDoc, + "\n fragment ImageWithTextBlock on ImageWithTextBlock {\n image {\n ...Image\n }\n imageFormat\n text\n }\n": types.ImageWithTextBlockFragmentDoc, + "\n fragment PageSectionBlock on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n id\n blockType\n }\n }\n": types.PageSectionBlockFragmentDoc, + "\n fragment RichTextBlock on RichTextBlock {\n rawValue\n value\n }\n": types.RichTextBlockFragmentDoc, + "\n fragment Sponsor on SponsorBlock {\n id\n name\n logo {\n ...Image\n }\n text\n website\n }\n": types.SponsorFragmentDoc, + "\n fragment LeafBlocks on StreamFieldInterface {\n id\n blockType\n field\n ... on RichTextBlock {\n ...RichTextBlock\n }\n ... on ImageWithTextBlock {\n ...ImageWithTextBlock\n }\n ... on ImageSliderBlock {\n ...ImageSliderBlock\n }\n ... on HorizontalRuleBlock {\n ...HorizontalRuleBlock\n }\n ... on FeaturedBlock {\n ...FeaturedBlock\n }\n ... on ContactListBlock {\n ...ContactListBlock\n }\n ... on EmbedBlock {\n ...EmbedBlock\n }\n ... on FactBoxBlock {\n ...FactBoxBlock\n }\n }\n": types.LeafBlocksFragmentDoc, + "\n fragment OneLevelOfBlocks on StreamFieldInterface {\n ...LeafBlocks\n ... on AccordionBlock {\n ...AccordionBlock\n body {\n ...LeafBlocks\n }\n }\n ... on PageSectionBlock {\n ...PageSectionBlock\n body {\n ...LeafBlocks\n }\n }\n }\n": types.OneLevelOfBlocksFragmentDoc, + "\n fragment Blocks on StreamFieldInterface {\n ...OneLevelOfBlocks\n ... on AccordionBlock {\n ...AccordionBlock\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on PageSectionBlock {\n ...PageSectionBlock\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on ContactSectionBlock {\n ...ContactSectionBlock\n blocks {\n ...OneLevelOfBlocks\n ... on ContactSubsectionBlock {\n ...ContactSubsectionBlock\n blocks {\n ...OneLevelOfBlocks\n }\n }\n }\n }\n }\n": types.BlocksFragmentDoc, "\n fragment Image on CustomImage {\n id\n url\n width\n height\n alt\n attribution\n }\n": types.ImageFragmentDoc, "\n fragment ContactEntity on ContactEntity {\n id\n name\n contactType\n title\n email\n phoneNumber\n image {\n ...Image\n }\n }\n": types.ContactEntityFragmentDoc, - "\n fragment Event on EventPage {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n subtitle\n lead\n body {\n ...OneLevelOfBlocks\n }\n featuredImage {\n ...Image\n }\n pig\n facebookUrl\n ticketUrl\n free\n priceRegular\n priceMember\n priceStudent\n categories {\n ... on EventCategory {\n name\n slug\n pig\n }\n }\n occurrences(limit: 5000) {\n ... on EventOccurrence {\n __typename\n id\n start\n end\n venue {\n __typename\n id\n slug\n title\n preposition\n url\n }\n venueCustom\n }\n }\n organizers {\n ... on EventOrganizer {\n id\n name\n slug\n externalUrl\n association {\n ... on AssociationPage {\n url\n }\n }\n }\n }\n }\n": types.EventFragmentDoc, + "\n fragment EventCategory on EventCategory {\n __typename\n name\n slug\n pig\n showInFilters\n }\n": types.EventCategoryFragmentDoc, + "\n fragment EventOrganizer on EventOrganizer {\n __typename\n id\n name\n slug\n externalUrl\n association {\n ... on AssociationPage {\n url\n }\n }\n }\n": types.EventOrganizerFragmentDoc, + "\n fragment Event on EventPage {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n subtitle\n lead\n body {\n ...OneLevelOfBlocks\n }\n featuredImage {\n ...Image\n }\n pig\n facebookUrl\n ticketUrl\n free\n priceRegular\n priceMember\n priceStudent\n categories {\n ... on EventCategory {\n ...EventCategory\n }\n }\n occurrences(limit: 5000) {\n ... on EventOccurrence {\n __typename\n id\n start\n end\n venue {\n __typename\n id\n slug\n title\n preposition\n url\n }\n venueCustom\n }\n }\n organizers {\n ... on EventOrganizer {\n ...EventOrganizer\n }\n }\n }\n": types.EventFragmentDoc, "\n fragment EventIndex on EventIndex {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n }\n": types.EventIndexFragmentDoc, "\n query eventIndexMetadata {\n index: eventIndex {\n ... on EventIndex {\n ...EventIndex\n }\n }\n }\n": types.EventIndexMetadataDocument, - "\n query futureEvents {\n index: eventIndex {\n ... on EventIndex {\n ...EventIndex\n }\n }\n events: eventIndex {\n ... on EventIndex {\n futureEvents {\n ... on EventPage {\n ...Event\n }\n }\n }\n }\n eventCategories: eventCategories(limit: 5000) {\n ... on EventCategory {\n name\n slug\n showInFilters\n }\n }\n eventOrganizers: eventOrganizers(limit: 5000) {\n ... on EventOrganizer {\n id\n name\n slug\n }\n }\n venues: pages(contentType: \"venues.VenuePage\") {\n ... on VenuePage {\n id\n title\n slug\n preposition\n }\n }\n }\n": types.FutureEventsDocument, + "\n query futureEvents {\n index: eventIndex {\n ... on EventIndex {\n ...EventIndex\n }\n }\n events: eventIndex {\n ... on EventIndex {\n futureEvents {\n ... on EventPage {\n ...Event\n }\n }\n }\n }\n eventCategories: eventCategories(limit: 5000) {\n ... on EventCategory {\n ...EventCategory\n }\n }\n eventOrganizers: eventOrganizers(limit: 5000) {\n ... on EventOrganizer {\n ...EventOrganizer\n }\n }\n venues: pages(contentType: \"venues.VenuePage\") {\n ... on VenuePage {\n id\n title\n slug\n preposition\n }\n }\n }\n": types.FutureEventsDocument, "\n fragment News on NewsPage {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n firstPublishedAt\n excerpt\n lead\n featuredImage {\n ...Image\n }\n body {\n ...Blocks\n }\n }\n": types.NewsFragmentDoc, "\n fragment NewsIndex on NewsIndex {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n lead\n }\n": types.NewsIndexFragmentDoc, "\n query news {\n index: newsIndex {\n ... on NewsIndex {\n ...NewsIndex\n }\n }\n news: pages(contentType: \"news.NewsPage\", order: \"-first_published_at\", limit: 1000) {\n ... on NewsPage {\n ...News\n }\n }\n }\n": types.NewsDocument, - "\n query openingHoursSets {\n openingHoursSets {\n ...OpeningHoursSetFragment\n }\n }\n": types.OpeningHoursSetsDocument, - "\n fragment OpeningHoursSetFragment on OpeningHoursSet {\n name\n effectiveFrom\n effectiveTo\n announcement\n items {\n id\n function\n week {\n id\n blockType\n ... on OpeningHoursWeekBlock {\n ...OpeningHoursWeekBlock\n }\n }\n }\n }\n": types.OpeningHoursSetFragmentFragmentDoc, + "\n query openingHoursSets {\n openingHoursSets {\n ...OpeningHoursSet\n }\n }\n": types.OpeningHoursSetsDocument, + "\n fragment OpeningHoursSet on OpeningHoursSet {\n name\n effectiveFrom\n effectiveTo\n announcement\n items {\n id\n function\n week {\n __typename\n ... on OpeningHoursWeekBlock {\n ...OpeningHoursWeekBlock\n }\n }\n }\n }\n": types.OpeningHoursSetFragmentDoc, "\n fragment OpeningHoursRangeBlock on OpeningHoursRangeBlock {\n timeFrom\n timeTo\n custom\n }\n": types.OpeningHoursRangeBlockFragmentDoc, "\n fragment OpeningHoursWeekBlock on OpeningHoursWeekBlock {\n monday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n tuesday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n wednesday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n thursday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n friday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n saturday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n sunday {\n ... on OpeningHoursRangeBlock {\n ...OpeningHoursRangeBlock\n }\n }\n }\n": types.OpeningHoursWeekBlockFragmentDoc, }; @@ -191,7 +225,7 @@ export function graphql(source: "\n fragment VenueIndex on VenueIndex {\n .. /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n fragment Venue on VenuePage {\n __typename\n id\n slug\n title\n seoTitle\n searchDescription\n images {\n ...Blocks\n }\n body {\n ...Blocks\n }\n featuredImage {\n ...Image\n }\n showAsBookable\n showInOverview\n floor\n preposition\n usedFor\n techSpecsUrl\n capabilityAudio\n capabilityAudioVideo\n capabilityBar\n capabilityLighting\n capacityLegal\n capacityStanding\n capacitySitting\n }\n"): (typeof documents)["\n fragment Venue on VenuePage {\n __typename\n id\n slug\n title\n seoTitle\n searchDescription\n images {\n ...Blocks\n }\n body {\n ...Blocks\n }\n featuredImage {\n ...Image\n }\n showAsBookable\n showInOverview\n floor\n preposition\n usedFor\n techSpecsUrl\n capabilityAudio\n capabilityAudioVideo\n capabilityBar\n capabilityLighting\n capacityLegal\n capacityStanding\n capacitySitting\n }\n"]; +export function graphql(source: "\n fragment Venue on VenuePage {\n __typename\n id\n slug\n title\n seoTitle\n searchDescription\n images {\n __typename\n ... on ImageSliderBlock {\n ...ImageSliderBlock\n }\n }\n body {\n ...Blocks\n }\n featuredImage {\n ...Image\n }\n showAsBookable\n showInOverview\n floor\n preposition\n usedFor\n techSpecsUrl\n capabilityAudio\n capabilityAudioVideo\n capabilityBar\n capabilityLighting\n capacityLegal\n capacityStanding\n capacitySitting\n }\n"): (typeof documents)["\n fragment Venue on VenuePage {\n __typename\n id\n slug\n title\n seoTitle\n searchDescription\n images {\n __typename\n ... on ImageSliderBlock {\n ...ImageSliderBlock\n }\n }\n body {\n ...Blocks\n }\n featuredImage {\n ...Image\n }\n showAsBookable\n showInOverview\n floor\n preposition\n usedFor\n techSpecsUrl\n capabilityAudio\n capabilityAudioVideo\n capabilityBar\n capabilityLighting\n capacityLegal\n capacityStanding\n capacitySitting\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -211,7 +245,7 @@ export function graphql(source: "\n query sponsors {\n page: sponsorsPage {\ /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n fragment SponsorsPage on SponsorsPage {\n ... on SponsorsPage {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n sponsors {\n ... on SponsorBlock {\n id\n name\n logo {\n ...Image\n }\n text\n website\n }\n }\n }\n }\n"): (typeof documents)["\n fragment SponsorsPage on SponsorsPage {\n ... on SponsorsPage {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n sponsors {\n ... on SponsorBlock {\n id\n name\n logo {\n ...Image\n }\n text\n website\n }\n }\n }\n }\n"]; +export function graphql(source: "\n fragment SponsorsPage on SponsorsPage {\n ... on SponsorsPage {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n sponsors {\n ... on SponsorBlock {\n ...Sponsor\n }\n }\n }\n }\n"): (typeof documents)["\n fragment SponsorsPage on SponsorsPage {\n ... on SponsorsPage {\n title\n seoTitle\n searchDescription\n lead\n body {\n ...Blocks\n }\n sponsors {\n ... on SponsorBlock {\n ...Sponsor\n }\n }\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -223,15 +257,75 @@ export function graphql(source: "\n fragment VenueRentalIndex on VenueRentalInd /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n fragment LeafBlocks on StreamFieldInterface {\n id\n blockType\n field\n ... on RichTextBlock {\n rawValue\n value\n }\n ... on ImageWithTextBlock {\n image {\n ...Image\n }\n imageFormat\n text\n }\n ... on ImageSliderBlock {\n images {\n ... on ImageSliderItemBlock {\n image {\n ...Image\n }\n text\n }\n }\n }\n ... on HorizontalRuleBlock {\n color\n }\n ... on FeaturedBlock {\n title\n featuredBlockText: text\n linkText\n imagePosition\n backgroundColor\n featuredPage {\n contentType\n pageType\n url\n ... on EventPage {\n featuredImage {\n ...Image\n }\n }\n ... on NewsPage {\n featuredImage {\n ...Image\n }\n }\n }\n featuredImageOverride {\n ...Image\n }\n }\n ... on ContactListBlock {\n items {\n blockType\n ... on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n }\n }\n ... on EmbedBlock {\n url\n embed\n rawEmbed\n }\n ... on FactBoxBlock {\n backgroundColor\n factBoxBody: body\n }\n }\n"): (typeof documents)["\n fragment LeafBlocks on StreamFieldInterface {\n id\n blockType\n field\n ... on RichTextBlock {\n rawValue\n value\n }\n ... on ImageWithTextBlock {\n image {\n ...Image\n }\n imageFormat\n text\n }\n ... on ImageSliderBlock {\n images {\n ... on ImageSliderItemBlock {\n image {\n ...Image\n }\n text\n }\n }\n }\n ... on HorizontalRuleBlock {\n color\n }\n ... on FeaturedBlock {\n title\n featuredBlockText: text\n linkText\n imagePosition\n backgroundColor\n featuredPage {\n contentType\n pageType\n url\n ... on EventPage {\n featuredImage {\n ...Image\n }\n }\n ... on NewsPage {\n featuredImage {\n ...Image\n }\n }\n }\n featuredImageOverride {\n ...Image\n }\n }\n ... on ContactListBlock {\n items {\n blockType\n ... on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n }\n }\n ... on EmbedBlock {\n url\n embed\n rawEmbed\n }\n ... on FactBoxBlock {\n backgroundColor\n factBoxBody: body\n }\n }\n"]; +export function graphql(source: "\n fragment AccordionBlock on AccordionBlock {\n heading\n body {\n id\n blockType\n }\n }\n"): (typeof documents)["\n fragment AccordionBlock on AccordionBlock {\n heading\n body {\n id\n blockType\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n fragment OneLevelOfBlocks on StreamFieldInterface {\n ...LeafBlocks\n ... on AccordionBlock {\n heading\n body {\n ...LeafBlocks\n }\n }\n ... on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n ...LeafBlocks\n }\n }\n }\n"): (typeof documents)["\n fragment OneLevelOfBlocks on StreamFieldInterface {\n ...LeafBlocks\n ... on AccordionBlock {\n heading\n body {\n ...LeafBlocks\n }\n }\n ... on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n ...LeafBlocks\n }\n }\n }\n"]; +export function graphql(source: "\n fragment ContactEntityBlock on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n"): (typeof documents)["\n fragment ContactEntityBlock on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n fragment Blocks on StreamFieldInterface {\n ... on AccordionBlock {\n heading\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on ContactSectionBlock {\n title\n text\n blocks {\n ... on ContactSubsectionBlock {\n title\n text\n blocks {\n ...OneLevelOfBlocks\n }\n }\n ...OneLevelOfBlocks\n }\n }\n ...OneLevelOfBlocks\n }\n"): (typeof documents)["\n fragment Blocks on StreamFieldInterface {\n ... on AccordionBlock {\n heading\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on ContactSectionBlock {\n title\n text\n blocks {\n ... on ContactSubsectionBlock {\n title\n text\n blocks {\n ...OneLevelOfBlocks\n }\n }\n ...OneLevelOfBlocks\n }\n }\n ...OneLevelOfBlocks\n }\n"]; +export function graphql(source: "\n fragment ContactListBlock on ContactListBlock {\n items {\n blockType\n ... on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\n }\n }\n }\n"): (typeof documents)["\n fragment ContactListBlock on ContactListBlock {\n items {\n blockType\n ... on ContactEntityBlock {\n contactEntity {\n ...ContactEntity\n }\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 fragment ContactSectionBlock on ContactSectionBlock {\n title\n text\n blocks {\n id\n blockType\n }\n }\n"): (typeof documents)["\n fragment ContactSectionBlock on ContactSectionBlock {\n title\n text\n blocks {\n id\n blockType\n }\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment ContactSubsectionBlock on ContactSubsectionBlock {\n title\n text\n blocks {\n id\n blockType\n }\n }\n"): (typeof documents)["\n fragment ContactSubsectionBlock on ContactSubsectionBlock {\n title\n text\n blocks {\n id\n blockType\n }\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment EmbedBlock on EmbedBlock {\n url\n embed\n rawEmbed\n }\n"): (typeof documents)["\n fragment EmbedBlock on EmbedBlock {\n url\n embed\n rawEmbed\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment FactBoxBlock on FactBoxBlock {\n backgroundColor\n factBoxBody: body\n }\n"): (typeof documents)["\n fragment FactBoxBlock on FactBoxBlock {\n backgroundColor\n factBoxBody: body\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment FeaturedBlock on FeaturedBlock {\n title\n featuredBlockText: text\n linkText\n imagePosition\n backgroundColor\n featuredPage {\n contentType\n pageType\n url\n ... on EventPage {\n featuredImage {\n ...Image\n }\n }\n ... on NewsPage {\n featuredImage {\n ...Image\n }\n }\n }\n featuredImageOverride {\n ...Image\n }\n }\n"): (typeof documents)["\n fragment FeaturedBlock on FeaturedBlock {\n title\n featuredBlockText: text\n linkText\n imagePosition\n backgroundColor\n featuredPage {\n contentType\n pageType\n url\n ... on EventPage {\n featuredImage {\n ...Image\n }\n }\n ... on NewsPage {\n featuredImage {\n ...Image\n }\n }\n }\n featuredImageOverride {\n ...Image\n }\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment HorizontalRuleBlock on HorizontalRuleBlock {\n color\n }\n"): (typeof documents)["\n fragment HorizontalRuleBlock on HorizontalRuleBlock {\n color\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment ImageSliderItem on ImageSliderItemBlock {\n image {\n ...Image\n }\n text\n }\n"): (typeof documents)["\n fragment ImageSliderItem on ImageSliderItemBlock {\n image {\n ...Image\n }\n text\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment ImageSliderBlock on ImageSliderBlock {\n images {\n __typename\n ... on ImageSliderItemBlock {\n ...ImageSliderItem\n }\n }\n }\n"): (typeof documents)["\n fragment ImageSliderBlock on ImageSliderBlock {\n images {\n __typename\n ... on ImageSliderItemBlock {\n ...ImageSliderItem\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 fragment ImageWithTextBlock on ImageWithTextBlock {\n image {\n ...Image\n }\n imageFormat\n text\n }\n"): (typeof documents)["\n fragment ImageWithTextBlock on ImageWithTextBlock {\n image {\n ...Image\n }\n imageFormat\n text\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment PageSectionBlock on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n id\n blockType\n }\n }\n"): (typeof documents)["\n fragment PageSectionBlock on PageSectionBlock {\n title\n backgroundColor\n icon\n body {\n id\n blockType\n }\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment RichTextBlock on RichTextBlock {\n rawValue\n value\n }\n"): (typeof documents)["\n fragment RichTextBlock on RichTextBlock {\n rawValue\n value\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment Sponsor on SponsorBlock {\n id\n name\n logo {\n ...Image\n }\n text\n website\n }\n"): (typeof documents)["\n fragment Sponsor on SponsorBlock {\n id\n name\n logo {\n ...Image\n }\n text\n website\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment LeafBlocks on StreamFieldInterface {\n id\n blockType\n field\n ... on RichTextBlock {\n ...RichTextBlock\n }\n ... on ImageWithTextBlock {\n ...ImageWithTextBlock\n }\n ... on ImageSliderBlock {\n ...ImageSliderBlock\n }\n ... on HorizontalRuleBlock {\n ...HorizontalRuleBlock\n }\n ... on FeaturedBlock {\n ...FeaturedBlock\n }\n ... on ContactListBlock {\n ...ContactListBlock\n }\n ... on EmbedBlock {\n ...EmbedBlock\n }\n ... on FactBoxBlock {\n ...FactBoxBlock\n }\n }\n"): (typeof documents)["\n fragment LeafBlocks on StreamFieldInterface {\n id\n blockType\n field\n ... on RichTextBlock {\n ...RichTextBlock\n }\n ... on ImageWithTextBlock {\n ...ImageWithTextBlock\n }\n ... on ImageSliderBlock {\n ...ImageSliderBlock\n }\n ... on HorizontalRuleBlock {\n ...HorizontalRuleBlock\n }\n ... on FeaturedBlock {\n ...FeaturedBlock\n }\n ... on ContactListBlock {\n ...ContactListBlock\n }\n ... on EmbedBlock {\n ...EmbedBlock\n }\n ... on FactBoxBlock {\n ...FactBoxBlock\n }\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment OneLevelOfBlocks on StreamFieldInterface {\n ...LeafBlocks\n ... on AccordionBlock {\n ...AccordionBlock\n body {\n ...LeafBlocks\n }\n }\n ... on PageSectionBlock {\n ...PageSectionBlock\n body {\n ...LeafBlocks\n }\n }\n }\n"): (typeof documents)["\n fragment OneLevelOfBlocks on StreamFieldInterface {\n ...LeafBlocks\n ... on AccordionBlock {\n ...AccordionBlock\n body {\n ...LeafBlocks\n }\n }\n ... on PageSectionBlock {\n ...PageSectionBlock\n body {\n ...LeafBlocks\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 fragment Blocks on StreamFieldInterface {\n ...OneLevelOfBlocks\n ... on AccordionBlock {\n ...AccordionBlock\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on PageSectionBlock {\n ...PageSectionBlock\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on ContactSectionBlock {\n ...ContactSectionBlock\n blocks {\n ...OneLevelOfBlocks\n ... on ContactSubsectionBlock {\n ...ContactSubsectionBlock\n blocks {\n ...OneLevelOfBlocks\n }\n }\n }\n }\n }\n"): (typeof documents)["\n fragment Blocks on StreamFieldInterface {\n ...OneLevelOfBlocks\n ... on AccordionBlock {\n ...AccordionBlock\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on PageSectionBlock {\n ...PageSectionBlock\n body {\n ...OneLevelOfBlocks\n }\n }\n ... on ContactSectionBlock {\n ...ContactSectionBlock\n blocks {\n ...OneLevelOfBlocks\n ... on ContactSubsectionBlock {\n ...ContactSubsectionBlock\n blocks {\n ...OneLevelOfBlocks\n }\n }\n }\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -243,7 +337,15 @@ export function graphql(source: "\n fragment ContactEntity on ContactEntity {\n /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n fragment Event on EventPage {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n subtitle\n lead\n body {\n ...OneLevelOfBlocks\n }\n featuredImage {\n ...Image\n }\n pig\n facebookUrl\n ticketUrl\n free\n priceRegular\n priceMember\n priceStudent\n categories {\n ... on EventCategory {\n name\n slug\n pig\n }\n }\n occurrences(limit: 5000) {\n ... on EventOccurrence {\n __typename\n id\n start\n end\n venue {\n __typename\n id\n slug\n title\n preposition\n url\n }\n venueCustom\n }\n }\n organizers {\n ... on EventOrganizer {\n id\n name\n slug\n externalUrl\n association {\n ... on AssociationPage {\n url\n }\n }\n }\n }\n }\n"): (typeof documents)["\n fragment Event on EventPage {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n subtitle\n lead\n body {\n ...OneLevelOfBlocks\n }\n featuredImage {\n ...Image\n }\n pig\n facebookUrl\n ticketUrl\n free\n priceRegular\n priceMember\n priceStudent\n categories {\n ... on EventCategory {\n name\n slug\n pig\n }\n }\n occurrences(limit: 5000) {\n ... on EventOccurrence {\n __typename\n id\n start\n end\n venue {\n __typename\n id\n slug\n title\n preposition\n url\n }\n venueCustom\n }\n }\n organizers {\n ... on EventOrganizer {\n id\n name\n slug\n externalUrl\n association {\n ... on AssociationPage {\n url\n }\n }\n }\n }\n }\n"]; +export function graphql(source: "\n fragment EventCategory on EventCategory {\n __typename\n name\n slug\n pig\n showInFilters\n }\n"): (typeof documents)["\n fragment EventCategory on EventCategory {\n __typename\n name\n slug\n pig\n showInFilters\n }\n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n fragment EventOrganizer on EventOrganizer {\n __typename\n id\n name\n slug\n externalUrl\n association {\n ... on AssociationPage {\n url\n }\n }\n }\n"): (typeof documents)["\n fragment EventOrganizer on EventOrganizer {\n __typename\n id\n name\n slug\n externalUrl\n association {\n ... on AssociationPage {\n url\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 fragment Event on EventPage {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n subtitle\n lead\n body {\n ...OneLevelOfBlocks\n }\n featuredImage {\n ...Image\n }\n pig\n facebookUrl\n ticketUrl\n free\n priceRegular\n priceMember\n priceStudent\n categories {\n ... on EventCategory {\n ...EventCategory\n }\n }\n occurrences(limit: 5000) {\n ... on EventOccurrence {\n __typename\n id\n start\n end\n venue {\n __typename\n id\n slug\n title\n preposition\n url\n }\n venueCustom\n }\n }\n organizers {\n ... on EventOrganizer {\n ...EventOrganizer\n }\n }\n }\n"): (typeof documents)["\n fragment Event on EventPage {\n __typename\n id\n slug\n seoTitle\n searchDescription\n title\n subtitle\n lead\n body {\n ...OneLevelOfBlocks\n }\n featuredImage {\n ...Image\n }\n pig\n facebookUrl\n ticketUrl\n free\n priceRegular\n priceMember\n priceStudent\n categories {\n ... on EventCategory {\n ...EventCategory\n }\n }\n occurrences(limit: 5000) {\n ... on EventOccurrence {\n __typename\n id\n start\n end\n venue {\n __typename\n id\n slug\n title\n preposition\n url\n }\n venueCustom\n }\n }\n organizers {\n ... on EventOrganizer {\n ...EventOrganizer\n }\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -255,7 +357,7 @@ export function graphql(source: "\n query eventIndexMetadata {\n index: even /** * 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 futureEvents {\n index: eventIndex {\n ... on EventIndex {\n ...EventIndex\n }\n }\n events: eventIndex {\n ... on EventIndex {\n futureEvents {\n ... on EventPage {\n ...Event\n }\n }\n }\n }\n eventCategories: eventCategories(limit: 5000) {\n ... on EventCategory {\n name\n slug\n showInFilters\n }\n }\n eventOrganizers: eventOrganizers(limit: 5000) {\n ... on EventOrganizer {\n id\n name\n slug\n }\n }\n venues: pages(contentType: \"venues.VenuePage\") {\n ... on VenuePage {\n id\n title\n slug\n preposition\n }\n }\n }\n"): (typeof documents)["\n query futureEvents {\n index: eventIndex {\n ... on EventIndex {\n ...EventIndex\n }\n }\n events: eventIndex {\n ... on EventIndex {\n futureEvents {\n ... on EventPage {\n ...Event\n }\n }\n }\n }\n eventCategories: eventCategories(limit: 5000) {\n ... on EventCategory {\n name\n slug\n showInFilters\n }\n }\n eventOrganizers: eventOrganizers(limit: 5000) {\n ... on EventOrganizer {\n id\n name\n slug\n }\n }\n venues: pages(contentType: \"venues.VenuePage\") {\n ... on VenuePage {\n id\n title\n slug\n preposition\n }\n }\n }\n"]; +export function graphql(source: "\n query futureEvents {\n index: eventIndex {\n ... on EventIndex {\n ...EventIndex\n }\n }\n events: eventIndex {\n ... on EventIndex {\n futureEvents {\n ... on EventPage {\n ...Event\n }\n }\n }\n }\n eventCategories: eventCategories(limit: 5000) {\n ... on EventCategory {\n ...EventCategory\n }\n }\n eventOrganizers: eventOrganizers(limit: 5000) {\n ... on EventOrganizer {\n ...EventOrganizer\n }\n }\n venues: pages(contentType: \"venues.VenuePage\") {\n ... on VenuePage {\n id\n title\n slug\n preposition\n }\n }\n }\n"): (typeof documents)["\n query futureEvents {\n index: eventIndex {\n ... on EventIndex {\n ...EventIndex\n }\n }\n events: eventIndex {\n ... on EventIndex {\n futureEvents {\n ... on EventPage {\n ...Event\n }\n }\n }\n }\n eventCategories: eventCategories(limit: 5000) {\n ... on EventCategory {\n ...EventCategory\n }\n }\n eventOrganizers: eventOrganizers(limit: 5000) {\n ... on EventOrganizer {\n ...EventOrganizer\n }\n }\n venues: pages(contentType: \"venues.VenuePage\") {\n ... on VenuePage {\n id\n title\n slug\n preposition\n }\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -271,11 +373,11 @@ export function graphql(source: "\n query news {\n index: newsIndex {\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 openingHoursSets {\n openingHoursSets {\n ...OpeningHoursSetFragment\n }\n }\n"): (typeof documents)["\n query openingHoursSets {\n openingHoursSets {\n ...OpeningHoursSetFragment\n }\n }\n"]; +export function graphql(source: "\n query openingHoursSets {\n openingHoursSets {\n ...OpeningHoursSet\n }\n }\n"): (typeof documents)["\n query openingHoursSets {\n openingHoursSets {\n ...OpeningHoursSet\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n fragment OpeningHoursSetFragment on OpeningHoursSet {\n name\n effectiveFrom\n effectiveTo\n announcement\n items {\n id\n function\n week {\n id\n blockType\n ... on OpeningHoursWeekBlock {\n ...OpeningHoursWeekBlock\n }\n }\n }\n }\n"): (typeof documents)["\n fragment OpeningHoursSetFragment on OpeningHoursSet {\n name\n effectiveFrom\n effectiveTo\n announcement\n items {\n id\n function\n week {\n id\n blockType\n ... on OpeningHoursWeekBlock {\n ...OpeningHoursWeekBlock\n }\n }\n }\n }\n"]; +export function graphql(source: "\n fragment OpeningHoursSet on OpeningHoursSet {\n name\n effectiveFrom\n effectiveTo\n announcement\n items {\n id\n function\n week {\n __typename\n ... on OpeningHoursWeekBlock {\n ...OpeningHoursWeekBlock\n }\n }\n }\n }\n"): (typeof documents)["\n fragment OpeningHoursSet on OpeningHoursSet {\n name\n effectiveFrom\n effectiveTo\n announcement\n items {\n id\n function\n week {\n __typename\n ... on OpeningHoursWeekBlock {\n ...OpeningHoursWeekBlock\n }\n }\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -289,4 +391,4 @@ export function graphql(source: string) { return (documents as any)[source] ?? {}; } -export type DocumentType> = TDocumentNode extends DocumentNode< infer TType, any> ? TType : never; \ No newline at end of file +export type DocumentType> = TDocumentNode extends DocumentNode< infer TType, any> ? TType : never; diff --git a/web/src/gql/graphql.ts b/web/src/gql/graphql.ts index 0b701bb..e34cd12 100644 --- a/web/src/gql/graphql.ts +++ b/web/src/gql/graphql.ts @@ -1,4387 +1,517 @@ /* eslint-disable */ -import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; -export type Maybe = T | null; -export type InputMaybe = T | null | undefined; -export type Exact = { [K in keyof T]: T[K] }; -export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; -export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; -export type MakeEmpty = { [_ in K]?: never }; +/** Internal type. DO NOT USE DIRECTLY. */ +type Exact = { [K in keyof T]: T[K] }; +/** Internal type. DO NOT USE DIRECTLY. */ export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; -/** All built-in and custom scalars, mapped to their actual values */ -export type Scalars = { - ID: { input: string; output: string; } - String: { input: string; output: string; } - Boolean: { input: boolean; output: boolean; } - Int: { input: number; output: number; } - Float: { input: number; output: number; } - /** - * The `DateTime` scalar type represents a DateTime - * value as specified by - * [iso8601](https://en.wikipedia.org/wiki/ISO_8601). - */ - DateTime: { input: any; output: any; } - /** - * Allows use of a JSON String for input / output from the GraphQL schema. - * - * Use of this type is *not recommended* as you lose the benefits of having a defined, static - * schema (one of the key benefits of GraphQL). - */ - JSONString: { input: any; output: any; } - /** GraphQL type for an integer that must be equal or greater than zero. */ - PositiveInt: { input: any; output: any; } - RichText: { input: any; output: any; } - /** - * Leverages the internal Python implementation of UUID (uuid.UUID) to provide native UUID objects - * in fields, resolvers and input. - */ - UUID: { input: any; output: any; } -}; - -export type AccordionBlock = StreamFieldInterface & { - __typename?: 'AccordionBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - body?: Maybe>>; - field: Scalars['String']['output']; - heading: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; -}; - -export type AssociationIndex = PageInterface & { - __typename?: 'AssociationIndex'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - body?: Maybe>>; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - lead?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type AssociationIndexAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type AssociationIndexChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type AssociationIndexDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type AssociationIndexNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type AssociationIndexPreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type AssociationIndexSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type AssociationPage = PageInterface & { - __typename?: 'AssociationPage'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationType?: Maybe; - associationindex?: Maybe; - associationpage?: Maybe; - body?: Maybe>>; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - excerpt?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - lead?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - logo?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; - websiteUrl?: Maybe; -}; - - -export type AssociationPageAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type AssociationPageChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type AssociationPageDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type AssociationPageNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type AssociationPagePreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type AssociationPageSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type BlockQuoteBlock = StreamFieldInterface & { - __typename?: 'BlockQuoteBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type BooleanBlock = StreamFieldInterface & { - __typename?: 'BooleanBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['Boolean']['output']; -}; - -export type CharBlock = StreamFieldInterface & { - __typename?: 'CharBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type ChoiceBlock = StreamFieldInterface & { - __typename?: 'ChoiceBlock'; - blockType: Scalars['String']['output']; - choices: Array; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type ChoiceOption = { - __typename?: 'ChoiceOption'; - key: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -/** Collection type */ -export type CollectionObjectType = { - __typename?: 'CollectionObjectType'; - ancestors: Array>; - depth: Scalars['Int']['output']; - descendants: Array>; - id: Scalars['ID']['output']; - name: Scalars['String']['output']; - numchild: Scalars['Int']['output']; - path: Scalars['String']['output']; -}; - -export type ContactEntity = { - __typename?: 'ContactEntity'; - contactType: Scalars['String']['output']; - email?: Maybe; - id?: Maybe; - image?: Maybe; - name: Scalars['String']['output']; - phoneNumber?: Maybe; - title?: Maybe; -}; - -export type ContactEntityBlock = StreamFieldInterface & { - __typename?: 'ContactEntityBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - contactEntity?: Maybe; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; -}; - -export type ContactIndex = PageInterface & { - __typename?: 'ContactIndex'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - body?: Maybe>>; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - lead?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type ContactIndexAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type ContactIndexChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type ContactIndexDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type ContactIndexNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type ContactIndexPreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type ContactIndexSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type ContactListBlock = StreamFieldInterface & { - __typename?: 'ContactListBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - items: Array; - rawValue: Scalars['String']['output']; -}; - -export type ContactSectionBlock = StreamFieldInterface & { - __typename?: 'ContactSectionBlock'; - blockType: Scalars['String']['output']; - blocks?: Maybe>>; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - text?: Maybe; - title: Scalars['String']['output']; -}; - -export type ContactSubsectionBlock = StreamFieldInterface & { - __typename?: 'ContactSubsectionBlock'; - blockType: Scalars['String']['output']; - blocks?: Maybe>>; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - text?: Maybe; - title: Scalars['String']['output']; -}; - -export type CustomImage = { - __typename?: 'CustomImage'; - alt?: Maybe; - aspectRatio: Scalars['Float']['output']; - attribution?: Maybe; - collection: CollectionObjectType; - createdAt: Scalars['DateTime']['output']; - file: Scalars['String']['output']; - fileHash: Scalars['String']['output']; - fileSize?: Maybe; - focalPointHeight?: Maybe; - focalPointWidth?: Maybe; - focalPointX?: Maybe; - focalPointY?: Maybe; - height: Scalars['Int']['output']; - id?: Maybe; - isSvg: Scalars['Boolean']['output']; - rendition?: Maybe; - sizes: Scalars['String']['output']; - /** @deprecated Use the `url` attribute */ - src: Scalars['String']['output']; - srcSet?: Maybe; - tags: Array; - title: Scalars['String']['output']; - url: Scalars['String']['output']; - width: Scalars['Int']['output']; -}; - - -export type CustomImageRenditionArgs = { - bgcolor?: InputMaybe; - fill?: InputMaybe; - format?: InputMaybe; - height?: InputMaybe; - jpegquality?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - preserveSvg?: InputMaybe; - webpquality?: InputMaybe; - width?: InputMaybe; -}; - - -export type CustomImageSrcSetArgs = { - format?: InputMaybe; - preserveSvg?: InputMaybe; - sizes?: InputMaybe>>; -}; - -export type DateBlock = StreamFieldInterface & { - __typename?: 'DateBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - - -export type DateBlockValueArgs = { - format?: InputMaybe; -}; - -export type DateTimeBlock = StreamFieldInterface & { - __typename?: 'DateTimeBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - - -export type DateTimeBlockValueArgs = { - format?: InputMaybe; -}; - -export type DecimalBlock = StreamFieldInterface & { - __typename?: 'DecimalBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['Float']['output']; -}; - -export type DocumentChooserBlock = StreamFieldInterface & { - __typename?: 'DocumentChooserBlock'; - blockType: Scalars['String']['output']; - document?: Maybe; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; -}; - -/** - * Base document type used if one isn't generated for the current model. - * All other node types extend this. - */ -export type DocumentObjectType = { - __typename?: 'DocumentObjectType'; - collection: CollectionObjectType; - createdAt: Scalars['DateTime']['output']; - file: Scalars['String']['output']; - fileHash: Scalars['String']['output']; - fileSize?: Maybe; - id: Scalars['ID']['output']; - tags: Array; - title: Scalars['String']['output']; - url: Scalars['String']['output']; -}; - -export type EmailBlock = StreamFieldInterface & { - __typename?: 'EmailBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type EmbedBlock = StreamFieldInterface & { - __typename?: 'EmbedBlock'; - blockType: Scalars['String']['output']; - embed?: Maybe; - field: Scalars['String']['output']; - id?: Maybe; - rawEmbed?: Maybe; - rawValue: Scalars['String']['output']; - url: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type EventCategory = { - __typename?: 'EventCategory'; - id?: Maybe; - name: Scalars['String']['output']; - pig: Scalars['String']['output']; - showInFilters: Scalars['Boolean']['output']; - slug: Scalars['String']['output']; -}; - -export type EventIndex = PageInterface & { - __typename?: 'EventIndex'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - firstPublishedAt?: Maybe; - futureEvents: Array; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type EventIndexAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventIndexChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventIndexDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventIndexFutureEventsArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventIndexNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventIndexPreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventIndexSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type EventOccurrence = { - __typename?: 'EventOccurrence'; - end?: Maybe; - id?: Maybe; - start: Scalars['String']['output']; - venue?: Maybe; - venueCustom?: Maybe; -}; - -export type EventOrganizer = { - __typename?: 'EventOrganizer'; - association?: Maybe; - externalUrl?: Maybe; - id?: Maybe; - name: Scalars['String']['output']; - slug: Scalars['String']['output']; -}; - -export type EventOrganizerLink = { - __typename?: 'EventOrganizerLink'; - id?: Maybe; - organizer?: Maybe; -}; - -export type EventPage = PageInterface & { - __typename?: 'EventPage'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - body?: Maybe>>; - categories: Array; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - facebookUrl?: Maybe; - featuredImage?: Maybe; - firstPublishedAt?: Maybe; - free?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - lead?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - occurrences: Array; - organizers: Array; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - pig?: Maybe; - previousSiblings: Array; - priceMember?: Maybe; - priceRegular?: Maybe; - priceStudent?: Maybe; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - subtitle?: Maybe; - ticketUrl?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type EventPageAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventPageCategoriesArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventPageChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventPageDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventPageNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventPageOccurrencesArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventPageOrganizersArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventPagePreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type EventPageSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type FactBoxBlock = StreamFieldInterface & { - __typename?: 'FactBoxBlock'; - backgroundColor?: Maybe; - blockType: Scalars['String']['output']; - blocks: Array; - body: Scalars['RichText']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; -}; - -export type FeaturedBlock = StreamFieldInterface & { - __typename?: 'FeaturedBlock'; - backgroundColor?: Maybe; - blockType: Scalars['String']['output']; - blocks: Array; - featuredImageOverride?: Maybe; - featuredPage: PageInterface; - field: Scalars['String']['output']; - id?: Maybe; - imagePosition: Scalars['String']['output']; - linkText: Scalars['String']['output']; - rawValue: Scalars['String']['output']; - text: Scalars['String']['output']; - title: Scalars['String']['output']; -}; - -export type FloatBlock = StreamFieldInterface & { - __typename?: 'FloatBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['Float']['output']; -}; - -export type GenericPage = PageInterface & { - __typename?: 'GenericPage'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - body?: Maybe>>; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - lead?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - pig: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type GenericPageAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type GenericPageChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type GenericPageDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type GenericPageNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type GenericPagePreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type GenericPageSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type HomePage = PageInterface & { - __typename?: 'HomePage'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - featuredEvents: Array; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type HomePageAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type HomePageChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type HomePageDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type HomePageFeaturedEventsArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type HomePageNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type HomePagePreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type HomePageSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type HomePageFeaturedEvents = { - __typename?: 'HomePageFeaturedEvents'; - id?: Maybe; -}; - -export type HorizontalRuleBlock = StreamFieldInterface & { - __typename?: 'HorizontalRuleBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - color?: Maybe; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; -}; - -export type ImageBlock = StreamFieldInterface & { - __typename?: 'ImageBlock'; - altText?: Maybe; - blockType: Scalars['String']['output']; - decorative?: Maybe; - field: Scalars['String']['output']; - id?: Maybe; - image?: Maybe; - rawValue: Scalars['String']['output']; -}; - -export type ImageChooserBlock = StreamFieldInterface & { - __typename?: 'ImageChooserBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - image?: Maybe; - rawValue: Scalars['String']['output']; -}; - -export type ImageSliderBlock = StreamFieldInterface & { - __typename?: 'ImageSliderBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - field: Scalars['String']['output']; - id?: Maybe; - images?: Maybe>>; - rawValue: Scalars['String']['output']; -}; - -export type ImageSliderItemBlock = StreamFieldInterface & { - __typename?: 'ImageSliderItemBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - field: Scalars['String']['output']; - id?: Maybe; - image: CustomImage; - rawValue: Scalars['String']['output']; - text?: Maybe; -}; - -export type ImageWithTextBlock = StreamFieldInterface & { - __typename?: 'ImageWithTextBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - field: Scalars['String']['output']; - id?: Maybe; - image: CustomImage; - imageFormat: Scalars['String']['output']; - rawValue: Scalars['String']['output']; - text?: Maybe; -}; - -export type IntegerBlock = StreamFieldInterface & { - __typename?: 'IntegerBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['Int']['output']; -}; - -export type ListBlock = StreamFieldInterface & { - __typename?: 'ListBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - items: Array; - rawValue: Scalars['String']['output']; -}; - -export type NewsIndex = PageInterface & { - __typename?: 'NewsIndex'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - lead?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type NewsIndexAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type NewsIndexChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type NewsIndexDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type NewsIndexNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type NewsIndexPreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type NewsIndexSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type NewsPage = PageInterface & { - __typename?: 'NewsPage'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - body?: Maybe>>; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - excerpt?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - featuredImage?: Maybe; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - lead?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type NewsPageAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type NewsPageChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type NewsPageDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type NewsPageNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type NewsPagePreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type NewsPageSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type OpeningHoursItem = { - __typename?: 'OpeningHoursItem'; - function: Scalars['String']['output']; - id?: Maybe; - week?: Maybe>>; -}; - -export type OpeningHoursRangeBlock = StreamFieldInterface & { - __typename?: 'OpeningHoursRangeBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - custom?: Maybe; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - timeFrom?: Maybe; - timeTo?: Maybe; -}; - -export type OpeningHoursSet = { - __typename?: 'OpeningHoursSet'; - announcement?: Maybe; - effectiveFrom: Scalars['String']['output']; - effectiveTo?: Maybe; - id?: Maybe; - items?: Maybe>>; - name: Scalars['String']['output']; -}; - -export type OpeningHoursWeekBlock = StreamFieldInterface & { - __typename?: 'OpeningHoursWeekBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - field: Scalars['String']['output']; - friday?: Maybe; - id?: Maybe; - monday?: Maybe; - rawValue: Scalars['String']['output']; - saturday?: Maybe; - sunday?: Maybe; - thursday?: Maybe; - tuesday?: Maybe; - wednesday?: Maybe; -}; - -/** - * Base Page type used if one isn't generated for the current model. - * All other node types extend this. - */ -export type Page = PageInterface & { - __typename?: 'Page'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -/** - * Base Page type used if one isn't generated for the current model. - * All other node types extend this. - */ -export type PageAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -/** - * Base Page type used if one isn't generated for the current model. - * All other node types extend this. - */ -export type PageChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -/** - * Base Page type used if one isn't generated for the current model. - * All other node types extend this. - */ -export type PageDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -/** - * Base Page type used if one isn't generated for the current model. - * All other node types extend this. - */ -export type PageNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -/** - * Base Page type used if one isn't generated for the current model. - * All other node types extend this. - */ -export type PagePreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -/** - * Base Page type used if one isn't generated for the current model. - * All other node types extend this. - */ -export type PageSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type PageChooserBlock = StreamFieldInterface & { - __typename?: 'PageChooserBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - page?: Maybe; - rawValue: Scalars['String']['output']; -}; - -export type PageInterface = { - ancestors: Array; - children: Array; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - firstPublishedAt?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - nextSiblings: Array; - pageType?: Maybe; - parent?: Maybe; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - slug: Scalars['String']['output']; - title: Scalars['String']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; -}; - - -export type PageInterfaceAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type PageInterfaceChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type PageInterfaceDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type PageInterfaceNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type PageInterfacePreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type PageInterfaceSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type PageSectionBlock = StreamFieldInterface & { - __typename?: 'PageSectionBlock'; - backgroundColor?: Maybe; - blockType: Scalars['String']['output']; - blocks: Array; - body?: Maybe>>; - field: Scalars['String']['output']; - icon?: Maybe; - id?: Maybe; - rawValue: Scalars['String']['output']; - title: Scalars['String']['output']; -}; - -export type Query = { - __typename?: 'Query'; - associationIndex?: Maybe; - collections: Array>; - contactEntities?: Maybe>>; - contactEntity?: Maybe; - contactIndex?: Maybe; - document?: Maybe; - documentType: Scalars['String']['output']; - documents: Array; - eventCategories?: Maybe>>; - eventCategory?: Maybe; - eventIndex?: Maybe; - eventOrganizer?: Maybe; - eventOrganizers?: Maybe>>; - image?: Maybe; - imageType: Scalars['String']['output']; - images: Array; - newsIndex?: Maybe; - openingHoursSet?: Maybe; - openingHoursSets?: Maybe>>; - page?: Maybe; - pages: Array; - redirects: Array; - search: Array; - site?: Maybe; - sites: Array; - snippets: Array; - sponsorsPage?: Maybe; - tag?: Maybe; - tags: Array; - venueIndex?: Maybe; - venueRentalIndex?: Maybe; -}; - - -export type QueryAssociationIndexArgs = { - order?: InputMaybe; - token?: InputMaybe; -}; - - -export type QueryCollectionsArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; -}; - - -export type QueryContactEntitiesArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type QueryContactEntityArgs = { - id?: InputMaybe; -}; - - -export type QueryContactIndexArgs = { - order?: InputMaybe; - token?: InputMaybe; -}; - - -export type QueryDocumentArgs = { - id?: InputMaybe; -}; - - -export type QueryDocumentsArgs = { - collection?: InputMaybe; - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type QueryEventCategoriesArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type QueryEventCategoryArgs = { - id?: InputMaybe; -}; - - -export type QueryEventIndexArgs = { - order?: InputMaybe; - token?: InputMaybe; -}; - - -export type QueryEventOrganizerArgs = { - id?: InputMaybe; -}; - - -export type QueryEventOrganizersArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type QueryImageArgs = { - id?: InputMaybe; -}; - - -export type QueryImagesArgs = { - collection?: InputMaybe; - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type QueryNewsIndexArgs = { - order?: InputMaybe; - token?: InputMaybe; -}; - - -export type QueryOpeningHoursSetArgs = { - id?: InputMaybe; -}; - - -export type QueryOpeningHoursSetsArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type QueryPageArgs = { - contentType?: InputMaybe; - id?: InputMaybe; - inSite?: InputMaybe; - site?: InputMaybe; - slug?: InputMaybe; - token?: InputMaybe; - urlPath?: InputMaybe; -}; - - -export type QueryPagesArgs = { - ancestor?: InputMaybe; - contentType?: InputMaybe; - id?: InputMaybe; - inMenu?: InputMaybe; - inSite?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - parent?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; - site?: InputMaybe; -}; - - -export type QuerySearchArgs = { - query?: InputMaybe; -}; - - -export type QuerySiteArgs = { - hostname?: InputMaybe; - id?: InputMaybe; -}; - - -export type QuerySitesArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type QuerySponsorsPageArgs = { - order?: InputMaybe; - token?: InputMaybe; -}; - - -export type QueryTagArgs = { - id?: InputMaybe; -}; - - -export type QueryTagsArgs = { - id?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; -}; - - -export type QueryVenueIndexArgs = { - order?: InputMaybe; - token?: InputMaybe; -}; - - -export type QueryVenueRentalIndexArgs = { - order?: InputMaybe; - token?: InputMaybe; -}; - -export type RawHtmlBlock = StreamFieldInterface & { - __typename?: 'RawHTMLBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type Redirect = { - __typename?: 'Redirect'; - isPermanent: Scalars['Boolean']['output']; - newUrl?: Maybe; - oldPath: Scalars['String']['output']; - oldUrl: Scalars['String']['output']; - page?: Maybe; - site: SiteObjectType; -}; - -export type RegexBlock = StreamFieldInterface & { - __typename?: 'RegexBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type Rendition = { - __typename?: 'Rendition'; - alt: Scalars['String']['output']; - backgroundPositionStyle: Scalars['String']['output']; - file: Scalars['String']['output']; - filterSpec: Scalars['String']['output']; - focalPoint?: Maybe; - focalPointKey: Scalars['String']['output']; - height: Scalars['Int']['output']; - id?: Maybe; - image: CustomImage; - url: Scalars['String']['output']; - width: Scalars['Int']['output']; -}; - -export type RichTextBlock = StreamFieldInterface & { - __typename?: 'RichTextBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type Search = AssociationIndex | AssociationPage | ContactEntity | ContactIndex | CustomImage | EventCategory | EventIndex | EventOccurrence | EventOrganizer | EventOrganizerLink | EventPage | GenericPage | HomePage | HomePageFeaturedEvents | NewsIndex | NewsPage | OpeningHoursItem | OpeningHoursSet | Page | Rendition | SponsorsPage | VenueIndex | VenuePage | VenueRentalIndex; - -/** Enum for search operator. */ -export enum SearchOperatorEnum { - And = 'AND', - Or = 'OR' -} - -export type SiteObjectType = { - __typename?: 'SiteObjectType'; - hostname: Scalars['String']['output']; - id: Scalars['ID']['output']; - /** Hvis merket vil denne siden håndtere forespørsler for alle andre vertsnavn som ikke har noen egen nettstedsoppføring. */ - isDefaultSite: Scalars['Boolean']['output']; - page?: Maybe; - pages: Array; - /** Sett denne til noe annet enn 80 dersom du har behov for at en spesifikk port vises i URLer (feks. utvikling på port 8000). Dette påvirker ikke håndtering av forespørsler (så port forwarding fungerer fortsatt). */ - port: Scalars['Int']['output']; - rootPage: Page; - /** Lesbart navn for nettstedet */ - siteName: Scalars['String']['output']; -}; - - -export type SiteObjectTypePageArgs = { - contentType?: InputMaybe; - id?: InputMaybe; - slug?: InputMaybe; - token?: InputMaybe; - urlPath?: InputMaybe; -}; - - -export type SiteObjectTypePagesArgs = { - contentType?: InputMaybe; - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type SnippetChooserBlock = StreamFieldInterface & { - __typename?: 'SnippetChooserBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - snippet?: Maybe; -}; - -export type SnippetInterface = { - contentType: Scalars['String']['output']; - snippetType: Scalars['String']['output']; -}; - -export type SponsorBlock = StreamFieldInterface & { - __typename?: 'SponsorBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - field: Scalars['String']['output']; - id?: Maybe; - logo?: Maybe; - name?: Maybe; - rawValue: Scalars['String']['output']; - text?: Maybe; - website?: Maybe; -}; - -export type SponsorsPage = PageInterface & { - __typename?: 'SponsorsPage'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - body?: Maybe>>; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - lead?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsors?: Maybe>>; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type SponsorsPageAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type SponsorsPageChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type SponsorsPageDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type SponsorsPageNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type SponsorsPagePreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type SponsorsPageSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type StaticBlock = StreamFieldInterface & { - __typename?: 'StaticBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type StreamBlock = StreamFieldInterface & { - __typename?: 'StreamBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; -}; - -export type StreamFieldBlock = StreamFieldInterface & { - __typename?: 'StreamFieldBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type StreamFieldInterface = { - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; -}; - -export type StructBlock = StreamFieldInterface & { - __typename?: 'StructBlock'; - blockType: Scalars['String']['output']; - blocks: Array; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; -}; - -export type TagObjectType = { - __typename?: 'TagObjectType'; - id: Scalars['ID']['output']; - name: Scalars['String']['output']; -}; - -export type TextBlock = StreamFieldInterface & { - __typename?: 'TextBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type TimeBlock = StreamFieldInterface & { - __typename?: 'TimeBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - - -export type TimeBlockValueArgs = { - format?: InputMaybe; -}; - -export type UrlBlock = StreamFieldInterface & { - __typename?: 'URLBlock'; - blockType: Scalars['String']['output']; - field: Scalars['String']['output']; - id?: Maybe; - rawValue: Scalars['String']['output']; - value: Scalars['String']['output']; -}; - -export type VenueIndex = PageInterface & { - __typename?: 'VenueIndex'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - body?: Maybe>>; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - lead?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type VenueIndexAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenueIndexChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenueIndexDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenueIndexNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenueIndexPreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenueIndexSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type VenuePage = PageInterface & { - __typename?: 'VenuePage'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - body?: Maybe>>; - capabilityAudio?: Maybe; - capabilityAudioVideo?: Maybe; - capabilityBar?: Maybe; - capabilityLighting?: Maybe; - capacityLegal?: Maybe; - capacitySitting?: Maybe; - capacityStanding?: Maybe; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - featuredImage?: Maybe; - firstPublishedAt?: Maybe; - floor?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - images?: Maybe>>; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - preposition?: Maybe; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showAsBookable?: Maybe; - showInMenus: Scalars['Boolean']['output']; - showInOverview?: Maybe; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - techSpecsUrl?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - usedFor?: Maybe; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type VenuePageAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenuePageChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenuePageDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenuePageNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenuePagePreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenuePageSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type VenueRentalIndex = PageInterface & { - __typename?: 'VenueRentalIndex'; - aliasOf?: Maybe; - aliases: Array; - ancestors: Array; - associationindex?: Maybe; - associationpage?: Maybe; - body?: Maybe>>; - children: Array; - contactindex?: Maybe; - contentType: Scalars['String']['output']; - depth?: Maybe; - descendants: Array; - draftTitle: Scalars['String']['output']; - eventindex?: Maybe; - eventpage?: Maybe; - expireAt?: Maybe; - expired: Scalars['Boolean']['output']; - firstPublishedAt?: Maybe; - genericpage?: Maybe; - goLiveAt?: Maybe; - hasUnpublishedChanges: Scalars['Boolean']['output']; - homepage?: Maybe; - id?: Maybe; - lastPublishedAt?: Maybe; - latestRevisionCreatedAt?: Maybe; - lead?: Maybe; - live: Scalars['Boolean']['output']; - locked?: Maybe; - lockedAt?: Maybe; - newsindex?: Maybe; - newspage?: Maybe; - nextSiblings: Array; - numchild: Scalars['Int']['output']; - pageType?: Maybe; - parent?: Maybe; - path: Scalars['String']['output']; - previousSiblings: Array; - searchDescription?: Maybe; - searchScore?: Maybe; - seoTitle: Scalars['String']['output']; - showInMenus: Scalars['Boolean']['output']; - siblings: Array; - sitesRootedHere: Array; - slug: Scalars['String']['output']; - sponsorspage?: Maybe; - title: Scalars['String']['output']; - translationKey: Scalars['UUID']['output']; - url?: Maybe; - urlPath: Scalars['String']['output']; - venueindex?: Maybe; - venuepage?: Maybe; - venuerentalindex?: Maybe; -}; - - -export type VenueRentalIndexAncestorsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenueRentalIndexChildrenArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenueRentalIndexDescendantsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenueRentalIndexNextSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenueRentalIndexPreviousSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - - -export type VenueRentalIndexSiblingsArgs = { - id?: InputMaybe; - inMenu?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - order?: InputMaybe; - searchOperator?: InputMaybe; - searchQuery?: InputMaybe; -}; - -export type GenericFragment = { __typename: 'GenericPage', id?: string | null, urlPath: string, seoTitle: string, searchDescription?: string | null, title: string, lead?: any | null, pig: string, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } - ) +import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; +export type GenericFragment = { __typename: 'GenericPage', id: string | null, urlPath: string, seoTitle: string, searchDescription: string | null, title: string, lead: string | null, pig: string, body: Array< + | { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } | null> | null } & { ' $fragmentName'?: 'GenericFragment' }; export type GenericPageByUrlQueryVariables = Exact<{ - urlPath: Scalars['String']['input']; + urlPath: string; }>; -export type GenericPageByUrlQuery = { __typename?: 'Query', page?: - | { __typename?: 'AssociationIndex' } - | { __typename?: 'AssociationPage' } - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | ( - { __typename?: 'GenericPage' } - & { ' $fragmentRefs'?: { 'GenericFragment': GenericFragment } } - ) - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | { __typename?: 'NewsPage' } - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | { __typename?: 'VenuePage' } - | { __typename?: 'VenueRentalIndex' } +export type GenericPageByUrlQuery = { page: + | { ' $fragmentRefs'?: { 'GenericFragment': GenericFragment } } + | Record | null }; export type AllGenericSlugsQueryVariables = Exact<{ [key: string]: never; }>; -export type AllGenericSlugsQuery = { __typename?: 'Query', pages: Array< - | { __typename?: 'AssociationIndex', id?: string | null, urlPath: string } - | { __typename?: 'AssociationPage', id?: string | null, urlPath: string } - | { __typename?: 'ContactIndex', id?: string | null, urlPath: string } - | { __typename?: 'EventIndex', id?: string | null, urlPath: string } - | { __typename?: 'EventPage', id?: string | null, urlPath: string } - | { __typename?: 'GenericPage', id?: string | null, urlPath: string } - | { __typename?: 'HomePage', id?: string | null, urlPath: string } - | { __typename?: 'NewsIndex', id?: string | null, urlPath: string } - | { __typename?: 'NewsPage', id?: string | null, urlPath: string } - | { __typename?: 'Page', id?: string | null, urlPath: string } - | { __typename?: 'SponsorsPage', id?: string | null, urlPath: string } - | { __typename?: 'VenueIndex', id?: string | null, urlPath: string } - | { __typename?: 'VenuePage', id?: string | null, urlPath: string } - | { __typename?: 'VenueRentalIndex', id?: string | null, urlPath: string } +export type AllGenericSlugsQuery = { pages: Array< + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } + | { id: string | null, urlPath: string } > }; export type NewsBySlugQueryVariables = Exact<{ - slug: Scalars['String']['input']; + slug: string; }>; -export type NewsBySlugQuery = { __typename?: 'Query', news?: - | { __typename?: 'AssociationIndex' } - | { __typename?: 'AssociationPage' } - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | { __typename?: 'GenericPage' } - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | ( - { __typename?: 'NewsPage' } - & { ' $fragmentRefs'?: { 'NewsFragment': NewsFragment } } - ) - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | { __typename?: 'VenuePage' } - | { __typename?: 'VenueRentalIndex' } +export type NewsBySlugQuery = { news: + | { ' $fragmentRefs'?: { 'NewsFragment': NewsFragment } } + | Record | null }; export type AllNewsSlugsQueryVariables = Exact<{ [key: string]: never; }>; -export type AllNewsSlugsQuery = { __typename?: 'Query', pages: Array< - | { __typename?: 'AssociationIndex', id?: string | null, slug: string } - | { __typename?: 'AssociationPage', id?: string | null, slug: string } - | { __typename?: 'ContactIndex', id?: string | null, slug: string } - | { __typename?: 'EventIndex', id?: string | null, slug: string } - | { __typename?: 'EventPage', id?: string | null, slug: string } - | { __typename?: 'GenericPage', id?: string | null, slug: string } - | { __typename?: 'HomePage', id?: string | null, slug: string } - | { __typename?: 'NewsIndex', id?: string | null, slug: string } - | { __typename?: 'NewsPage', id?: string | null, slug: string } - | { __typename?: 'Page', id?: string | null, slug: string } - | { __typename?: 'SponsorsPage', id?: string | null, slug: string } - | { __typename?: 'VenueIndex', id?: string | null, slug: string } - | { __typename?: 'VenuePage', id?: string | null, slug: string } - | { __typename?: 'VenueRentalIndex', id?: string | null, slug: string } +export type AllNewsSlugsQuery = { pages: Array< + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } > }; export type EventBySlugQueryVariables = Exact<{ - slug: Scalars['String']['input']; + slug: string; }>; -export type EventBySlugQuery = { __typename?: 'Query', event?: - | { __typename?: 'AssociationIndex' } - | { __typename?: 'AssociationPage' } - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | ( - { __typename?: 'EventPage' } - & { ' $fragmentRefs'?: { 'EventFragment': EventFragment } } - ) - | { __typename?: 'GenericPage' } - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | { __typename?: 'NewsPage' } - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | { __typename?: 'VenuePage' } - | { __typename?: 'VenueRentalIndex' } +export type EventBySlugQuery = { event: + | { ' $fragmentRefs'?: { 'EventFragment': EventFragment } } + | Record | null }; export type AllEventSlugsQueryVariables = Exact<{ [key: string]: never; }>; -export type AllEventSlugsQuery = { __typename?: 'Query', pages: Array< - | { __typename?: 'AssociationIndex', id?: string | null, slug: string } - | { __typename?: 'AssociationPage', id?: string | null, slug: string } - | { __typename?: 'ContactIndex', id?: string | null, slug: string } - | { __typename?: 'EventIndex', id?: string | null, slug: string } - | { __typename?: 'EventPage', id?: string | null, slug: string } - | { __typename?: 'GenericPage', id?: string | null, slug: string } - | { __typename?: 'HomePage', id?: string | null, slug: string } - | { __typename?: 'NewsIndex', id?: string | null, slug: string } - | { __typename?: 'NewsPage', id?: string | null, slug: string } - | { __typename?: 'Page', id?: string | null, slug: string } - | { __typename?: 'SponsorsPage', id?: string | null, slug: string } - | { __typename?: 'VenueIndex', id?: string | null, slug: string } - | { __typename?: 'VenuePage', id?: string | null, slug: string } - | { __typename?: 'VenueRentalIndex', id?: string | null, slug: string } +export type AllEventSlugsQuery = { pages: Array< + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } > }; export type AssociationBySlugQueryVariables = Exact<{ - slug: Scalars['String']['input']; + slug: string; }>; -export type AssociationBySlugQuery = { __typename?: 'Query', association?: - | { __typename?: 'AssociationIndex' } - | ( - { __typename?: 'AssociationPage' } - & { ' $fragmentRefs'?: { 'AssociationFragment': AssociationFragment } } - ) - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | { __typename?: 'GenericPage' } - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | { __typename?: 'NewsPage' } - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | { __typename?: 'VenuePage' } - | { __typename?: 'VenueRentalIndex' } +export type AssociationBySlugQuery = { association: + | { ' $fragmentRefs'?: { 'AssociationFragment': AssociationFragment } } + | Record | null }; export type AllAssociationSlugsQueryVariables = Exact<{ [key: string]: never; }>; -export type AllAssociationSlugsQuery = { __typename?: 'Query', pages: Array< - | { __typename?: 'AssociationIndex', id?: string | null, slug: string } - | { __typename?: 'AssociationPage', id?: string | null, slug: string } - | { __typename?: 'ContactIndex', id?: string | null, slug: string } - | { __typename?: 'EventIndex', id?: string | null, slug: string } - | { __typename?: 'EventPage', id?: string | null, slug: string } - | { __typename?: 'GenericPage', id?: string | null, slug: string } - | { __typename?: 'HomePage', id?: string | null, slug: string } - | { __typename?: 'NewsIndex', id?: string | null, slug: string } - | { __typename?: 'NewsPage', id?: string | null, slug: string } - | { __typename?: 'Page', id?: string | null, slug: string } - | { __typename?: 'SponsorsPage', id?: string | null, slug: string } - | { __typename?: 'VenueIndex', id?: string | null, slug: string } - | { __typename?: 'VenuePage', id?: string | null, slug: string } - | { __typename?: 'VenueRentalIndex', id?: string | null, slug: string } +export type AllAssociationSlugsQuery = { pages: Array< + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } > }; export type AllAssociationsQueryVariables = Exact<{ [key: string]: never; }>; -export type AllAssociationsQuery = { __typename?: 'Query', index?: ( - { __typename?: 'AssociationIndex' } - & { ' $fragmentRefs'?: { 'AssociationIndexFragment': AssociationIndexFragment } } - ) | null, associations: Array< - | { __typename?: 'AssociationIndex' } - | ( - { __typename?: 'AssociationPage' } - & { ' $fragmentRefs'?: { 'AssociationFragment': AssociationFragment } } - ) - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | { __typename?: 'GenericPage' } - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | { __typename?: 'NewsPage' } - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | { __typename?: 'VenuePage' } - | { __typename?: 'VenueRentalIndex' } +export type AllAssociationsQuery = { index: { ' $fragmentRefs'?: { 'AssociationIndexFragment': AssociationIndexFragment } } | null, associations: Array< + | { ' $fragmentRefs'?: { 'AssociationFragment': AssociationFragment } } + | Record > }; -export type AssociationIndexFragment = { __typename?: 'AssociationIndex', title: string, seoTitle: string, searchDescription?: string | null, lead?: any | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } - ) +export type AssociationIndexFragment = { title: string, seoTitle: string, searchDescription: string | null, lead: string | null, body: Array< + | { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } | null> | null } & { ' $fragmentName'?: 'AssociationIndexFragment' }; -export type AssociationFragment = { __typename: 'AssociationPage', id?: string | null, slug: string, title: string, seoTitle: string, searchDescription?: string | null, excerpt?: string | null, lead?: any | null, associationType?: string | null, websiteUrl?: string | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } - ) - | null> | null, logo?: { __typename?: 'CustomImage', url: string, width: number, height: number } | null } & { ' $fragmentName'?: 'AssociationFragment' }; +export type AssociationFragment = { __typename: 'AssociationPage', id: string | null, slug: string, title: string, seoTitle: string, searchDescription: string | null, excerpt: string | null, lead: string | null, associationType: string | null, websiteUrl: string | null, body: Array< + | { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } + | null> | null, logo: { url: string, width: number, height: number } | null } & { ' $fragmentName'?: 'AssociationFragment' }; export type ContactsQueryVariables = Exact<{ [key: string]: never; }>; -export type ContactsQuery = { __typename?: 'Query', index?: ( - { __typename?: 'ContactIndex' } - & { ' $fragmentRefs'?: { 'ContactIndexFragment': ContactIndexFragment } } - ) | null }; +export type ContactsQuery = { index: { ' $fragmentRefs'?: { 'ContactIndexFragment': ContactIndexFragment } } | null }; -export type ContactIndexFragment = { __typename?: 'ContactIndex', title: string, seoTitle: string, searchDescription?: string | null, lead?: any | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } - ) +export type ContactIndexFragment = { title: string, seoTitle: string, searchDescription: string | null, lead: string | null, body: Array< + | { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } | null> | null } & { ' $fragmentName'?: 'ContactIndexFragment' }; export type VenueBySlugQueryVariables = Exact<{ - slug: Scalars['String']['input']; + slug: string; }>; -export type VenueBySlugQuery = { __typename?: 'Query', venue?: - | { __typename?: 'AssociationIndex' } - | { __typename?: 'AssociationPage' } - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | { __typename?: 'GenericPage' } - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | { __typename?: 'NewsPage' } - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | ( - { __typename?: 'VenuePage' } - & { ' $fragmentRefs'?: { 'VenueFragment': VenueFragment } } - ) - | { __typename?: 'VenueRentalIndex' } +export type VenueBySlugQuery = { venue: + | { ' $fragmentRefs'?: { 'VenueFragment': VenueFragment } } + | Record | null }; export type AllVenueSlugsQueryVariables = Exact<{ [key: string]: never; }>; -export type AllVenueSlugsQuery = { __typename?: 'Query', pages: Array< - | { __typename?: 'AssociationIndex', id?: string | null, slug: string } - | { __typename?: 'AssociationPage', id?: string | null, slug: string } - | { __typename?: 'ContactIndex', id?: string | null, slug: string } - | { __typename?: 'EventIndex', id?: string | null, slug: string } - | { __typename?: 'EventPage', id?: string | null, slug: string } - | { __typename?: 'GenericPage', id?: string | null, slug: string } - | { __typename?: 'HomePage', id?: string | null, slug: string } - | { __typename?: 'NewsIndex', id?: string | null, slug: string } - | { __typename?: 'NewsPage', id?: string | null, slug: string } - | { __typename?: 'Page', id?: string | null, slug: string } - | { __typename?: 'SponsorsPage', id?: string | null, slug: string } - | { __typename?: 'VenueIndex', id?: string | null, slug: string } - | { __typename?: 'VenuePage', id?: string | null, slug: string } - | { __typename?: 'VenueRentalIndex', id?: string | null, slug: string } +export type AllVenueSlugsQuery = { pages: Array< + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } + | { id: string | null, slug: string } > }; export type VenueIndexQueryVariables = Exact<{ [key: string]: never; }>; -export type VenueIndexQuery = { __typename?: 'Query', index?: ( - { __typename?: 'VenueIndex' } - & { ' $fragmentRefs'?: { 'VenueIndexFragment': VenueIndexFragment } } - ) | null, venues: Array< - | { __typename?: 'AssociationIndex' } - | { __typename?: 'AssociationPage' } - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | { __typename?: 'GenericPage' } - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | { __typename?: 'NewsPage' } - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | ( - { __typename?: 'VenuePage' } - & { ' $fragmentRefs'?: { 'VenueFragment': VenueFragment } } - ) - | { __typename?: 'VenueRentalIndex' } +export type VenueIndexQuery = { index: { ' $fragmentRefs'?: { 'VenueIndexFragment': VenueIndexFragment } } | null, venues: Array< + | { ' $fragmentRefs'?: { 'VenueFragment': VenueFragment } } + | Record > }; -export type VenueIndexFragment = { __typename?: 'VenueIndex', title: string, seoTitle: string, searchDescription?: string | null, lead?: any | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } - ) +export type VenueIndexFragment = { title: string, seoTitle: string, searchDescription: string | null, lead: string | null, body: Array< + | { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } | null> | null } & { ' $fragmentName'?: 'VenueIndexFragment' }; -export type VenueFragment = { __typename: 'VenuePage', id?: string | null, slug: string, title: string, seoTitle: string, searchDescription?: string | null, showAsBookable?: boolean | null, showInOverview?: boolean | null, floor?: string | null, preposition?: string | null, usedFor?: string | null, techSpecsUrl?: string | null, capabilityAudio?: string | null, capabilityAudioVideo?: string | null, capabilityBar?: string | null, capabilityLighting?: string | null, capacityLegal?: string | null, capacityStanding?: string | null, capacitySitting?: string | null, images?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } - ) - | null> | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } - ) - | null> | null, featuredImage?: ( - { __typename?: 'CustomImage' } - & { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } - ) | null } & { ' $fragmentName'?: 'VenueFragment' }; +export type VenueFragment = { __typename: 'VenuePage', id: string | null, slug: string, title: string, seoTitle: string, searchDescription: string | null, showAsBookable: boolean | null, showInOverview: boolean | null, floor: string | null, preposition: string | null, usedFor: string | null, techSpecsUrl: string | null, capabilityAudio: string | null, capabilityAudioVideo: string | null, capabilityBar: string | null, capabilityLighting: string | null, capacityLegal: string | null, capacityStanding: string | null, capacitySitting: string | null, images: Array< + | { __typename: 'AccordionBlock' } + | { __typename: 'BlockQuoteBlock' } + | { __typename: 'BooleanBlock' } + | { __typename: 'CharBlock' } + | { __typename: 'ChoiceBlock' } + | { __typename: 'ContactEntityBlock' } + | { __typename: 'ContactListBlock' } + | { __typename: 'ContactSectionBlock' } + | { __typename: 'ContactSubsectionBlock' } + | { __typename: 'DateBlock' } + | { __typename: 'DateTimeBlock' } + | { __typename: 'DecimalBlock' } + | { __typename: 'DocumentChooserBlock' } + | { __typename: 'EmailBlock' } + | { __typename: 'EmbedBlock' } + | { __typename: 'FactBoxBlock' } + | { __typename: 'FeaturedBlock' } + | { __typename: 'FloatBlock' } + | { __typename: 'HorizontalRuleBlock' } + | { __typename: 'ImageBlock' } + | { __typename: 'ImageChooserBlock' } + | ( + { __typename: 'ImageSliderBlock' } + & { ' $fragmentRefs'?: { 'ImageSliderBlockFragment': ImageSliderBlockFragment } } + ) + | { __typename: 'ImageSliderItemBlock' } + | { __typename: 'ImageWithTextBlock' } + | { __typename: 'IntegerBlock' } + | { __typename: 'ListBlock' } + | { __typename: 'OpeningHoursRangeBlock' } + | { __typename: 'OpeningHoursWeekBlock' } + | { __typename: 'PageChooserBlock' } + | { __typename: 'PageSectionBlock' } + | { __typename: 'RawHTMLBlock' } + | { __typename: 'RegexBlock' } + | { __typename: 'RichTextBlock' } + | { __typename: 'SnippetChooserBlock' } + | { __typename: 'SponsorBlock' } + | { __typename: 'StaticBlock' } + | { __typename: 'StreamBlock' } + | { __typename: 'StreamFieldBlock' } + | { __typename: 'StructBlock' } + | { __typename: 'TextBlock' } + | { __typename: 'TimeBlock' } + | { __typename: 'URLBlock' } + | null> | null, body: Array< + | { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } + | null> | null, featuredImage: { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } | null } & { ' $fragmentName'?: 'VenueFragment' }; -export type HomeFragment = { __typename?: 'HomePage', featuredEvents: Array<{ __typename?: 'EventPage', id?: string | null }> } & { ' $fragmentName'?: 'HomeFragment' }; +export type HomeFragment = { featuredEvents: Array<{ id: string | null }> } & { ' $fragmentName'?: 'HomeFragment' }; export type HomeQueryVariables = Exact<{ [key: string]: never; }>; -export type HomeQuery = { __typename?: 'Query', events?: { __typename?: 'EventIndex', futureEvents: Array<( - { __typename?: 'EventPage' } - & { ' $fragmentRefs'?: { 'EventFragment': EventFragment } } - )> } | null, home?: - | { __typename?: 'AssociationIndex' } - | { __typename?: 'AssociationPage' } - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | { __typename?: 'GenericPage' } - | ( - { __typename?: 'HomePage' } - & { ' $fragmentRefs'?: { 'HomeFragment': HomeFragment } } - ) - | { __typename?: 'NewsIndex' } - | { __typename?: 'NewsPage' } - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | { __typename?: 'VenuePage' } - | { __typename?: 'VenueRentalIndex' } +export type HomeQuery = { events: { futureEvents: Array<{ ' $fragmentRefs'?: { 'EventFragment': EventFragment } }> } | null, home: + | { ' $fragmentRefs'?: { 'HomeFragment': HomeFragment } } + | Record | null, news: Array< - | { __typename?: 'AssociationIndex' } - | { __typename?: 'AssociationPage' } - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | { __typename?: 'GenericPage' } - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | ( - { __typename?: 'NewsPage' } - & { ' $fragmentRefs'?: { 'NewsFragment': NewsFragment } } - ) - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | { __typename?: 'VenuePage' } - | { __typename?: 'VenueRentalIndex' } + | { ' $fragmentRefs'?: { 'NewsFragment': NewsFragment } } + | Record > }; export type SearchQueryVariables = Exact<{ - query?: InputMaybe; + query?: string | null | undefined; }>; -export type SearchQuery = { __typename?: 'Query', results: Array< +export type SearchQuery = { results: Array< | { __typename: 'AssociationIndex', slug: string } - | { __typename: 'AssociationPage', slug: string, id?: string | null, title: string, associationType?: string | null } + | { __typename: 'AssociationPage', slug: string, id: string | null, title: string, associationType: string | null } | { __typename: 'ContactEntity' } | { __typename: 'ContactIndex', slug: string } | { __typename: 'CustomImage' } @@ -4390,646 +520,541 @@ export type SearchQuery = { __typename?: 'Query', results: Array< | { __typename: 'EventOccurrence' } | { __typename: 'EventOrganizer' } | { __typename: 'EventOrganizerLink' } - | { __typename: 'EventPage', slug: string, id?: string | null, title: string } - | { __typename: 'GenericPage', slug: string, id?: string | null, title: string } + | { __typename: 'EventPage', slug: string, id: string | null, title: string } + | { __typename: 'GenericPage', slug: string, id: string | null, title: string } | { __typename: 'HomePage', slug: string } | { __typename: 'HomePageFeaturedEvents' } | { __typename: 'NewsIndex', slug: string } - | { __typename: 'NewsPage', slug: string, id?: string | null, title: string } + | { __typename: 'NewsPage', slug: string, id: string | null, title: string } | { __typename: 'OpeningHoursItem' } | { __typename: 'OpeningHoursSet' } | { __typename: 'Page', slug: string } | { __typename: 'Rendition' } | { __typename: 'SponsorsPage', slug: string } | { __typename: 'VenueIndex', slug: string } - | { __typename: 'VenuePage', slug: string, id?: string | null, title: string } + | { __typename: 'VenuePage', slug: string, id: string | null, title: string } | { __typename: 'VenueRentalIndex', slug: string } > }; export type SponsorsQueryVariables = Exact<{ [key: string]: never; }>; -export type SponsorsQuery = { __typename?: 'Query', page?: ( - { __typename?: 'SponsorsPage' } - & { ' $fragmentRefs'?: { 'SponsorsPageFragment': SponsorsPageFragment } } - ) | null }; +export type SponsorsQuery = { page: { ' $fragmentRefs'?: { 'SponsorsPageFragment': SponsorsPageFragment } } | null }; -export type SponsorsPageFragment = { __typename?: 'SponsorsPage', title: string, seoTitle: string, searchDescription?: string | null, lead?: any | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } - ) - | null> | null, sponsors?: Array< - | { __typename?: 'AccordionBlock' } - | { __typename?: 'BlockQuoteBlock' } - | { __typename?: 'BooleanBlock' } - | { __typename?: 'CharBlock' } - | { __typename?: 'ChoiceBlock' } - | { __typename?: 'ContactEntityBlock' } - | { __typename?: 'ContactListBlock' } - | { __typename?: 'ContactSectionBlock' } - | { __typename?: 'ContactSubsectionBlock' } - | { __typename?: 'DateBlock' } - | { __typename?: 'DateTimeBlock' } - | { __typename?: 'DecimalBlock' } - | { __typename?: 'DocumentChooserBlock' } - | { __typename?: 'EmailBlock' } - | { __typename?: 'EmbedBlock' } - | { __typename?: 'FactBoxBlock' } - | { __typename?: 'FeaturedBlock' } - | { __typename?: 'FloatBlock' } - | { __typename?: 'HorizontalRuleBlock' } - | { __typename?: 'ImageBlock' } - | { __typename?: 'ImageChooserBlock' } - | { __typename?: 'ImageSliderBlock' } - | { __typename?: 'ImageSliderItemBlock' } - | { __typename?: 'ImageWithTextBlock' } - | { __typename?: 'IntegerBlock' } - | { __typename?: 'ListBlock' } - | { __typename?: 'OpeningHoursRangeBlock' } - | { __typename?: 'OpeningHoursWeekBlock' } - | { __typename?: 'PageChooserBlock' } - | { __typename?: 'PageSectionBlock' } - | { __typename?: 'RawHTMLBlock' } - | { __typename?: 'RegexBlock' } - | { __typename?: 'RichTextBlock' } - | { __typename?: 'SnippetChooserBlock' } - | { __typename?: 'SponsorBlock', id?: string | null, name?: string | null, text?: string | null, website?: string | null, logo?: ( - { __typename?: 'CustomImage' } - & { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } - ) | null } - | { __typename?: 'StaticBlock' } - | { __typename?: 'StreamBlock' } - | { __typename?: 'StreamFieldBlock' } - | { __typename?: 'StructBlock' } - | { __typename?: 'TextBlock' } - | { __typename?: 'TimeBlock' } - | { __typename?: 'URLBlock' } +export type SponsorsPageFragment = { title: string, seoTitle: string, searchDescription: string | null, lead: string | null, body: Array< + | { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } + | null> | null, sponsors: Array< + | { ' $fragmentRefs'?: { 'SponsorFragment': SponsorFragment } } + | Record | null> | null } & { ' $fragmentName'?: 'SponsorsPageFragment' }; export type VenueRentalIndexQueryVariables = Exact<{ [key: string]: never; }>; -export type VenueRentalIndexQuery = { __typename?: 'Query', index?: ( - { __typename?: 'VenueRentalIndex' } - & { ' $fragmentRefs'?: { 'VenueRentalIndexFragment': VenueRentalIndexFragment } } - ) | null, venues: Array< - | { __typename?: 'AssociationIndex' } - | { __typename?: 'AssociationPage' } - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | { __typename?: 'GenericPage' } - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | { __typename?: 'NewsPage' } - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | ( - { __typename?: 'VenuePage' } - & { ' $fragmentRefs'?: { 'VenueFragment': VenueFragment } } - ) - | { __typename?: 'VenueRentalIndex' } +export type VenueRentalIndexQuery = { index: { ' $fragmentRefs'?: { 'VenueRentalIndexFragment': VenueRentalIndexFragment } } | null, venues: Array< + | { ' $fragmentRefs'?: { 'VenueFragment': VenueFragment } } + | Record > }; -export type VenueRentalIndexFragment = { __typename?: 'VenueRentalIndex', title: string, seoTitle: string, searchDescription?: string | null, lead?: any | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } - ) +export type VenueRentalIndexFragment = { title: string, seoTitle: string, searchDescription: string | null, lead: string | null, body: Array< + | { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } | null> | null } & { ' $fragmentName'?: 'VenueRentalIndexFragment' }; -type LeafBlocks_AccordionBlock_Fragment = { __typename?: 'AccordionBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_AccordionBlock_Fragment' }; +export type AccordionBlockFragment = { heading: string, body: Array< + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | null> | null } & { ' $fragmentName'?: 'AccordionBlockFragment' }; -type LeafBlocks_BlockQuoteBlock_Fragment = { __typename?: 'BlockQuoteBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_BlockQuoteBlock_Fragment' }; +export type ContactEntityBlockFragment = { contactEntity: { ' $fragmentRefs'?: { 'ContactEntityFragment': ContactEntityFragment } } | null } & { ' $fragmentName'?: 'ContactEntityBlockFragment' }; -type LeafBlocks_BooleanBlock_Fragment = { __typename?: 'BooleanBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_BooleanBlock_Fragment' }; +export type ContactListBlockFragment = { items: Array< + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string, contactEntity: { ' $fragmentRefs'?: { 'ContactEntityFragment': ContactEntityFragment } } | null } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + | { blockType: string } + > } & { ' $fragmentName'?: 'ContactListBlockFragment' }; -type LeafBlocks_CharBlock_Fragment = { __typename?: 'CharBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_CharBlock_Fragment' }; +export type ContactSectionBlockFragment = { title: string, text: string | null, blocks: Array< + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | null> | null } & { ' $fragmentName'?: 'ContactSectionBlockFragment' }; -type LeafBlocks_ChoiceBlock_Fragment = { __typename?: 'ChoiceBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ChoiceBlock_Fragment' }; +export type ContactSubsectionBlockFragment = { title: string, text: string | null, blocks: Array< + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | null> | null } & { ' $fragmentName'?: 'ContactSubsectionBlockFragment' }; -type LeafBlocks_ContactEntityBlock_Fragment = { __typename?: 'ContactEntityBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ContactEntityBlock_Fragment' }; +export type EmbedBlockFragment = { url: string, embed: string | null, rawEmbed: string | null } & { ' $fragmentName'?: 'EmbedBlockFragment' }; -type LeafBlocks_ContactListBlock_Fragment = { __typename?: 'ContactListBlock', id?: string | null, blockType: string, field: string, items: Array< - | { __typename?: 'AccordionBlock', blockType: string } - | { __typename?: 'BlockQuoteBlock', blockType: string } - | { __typename?: 'BooleanBlock', blockType: string } - | { __typename?: 'CharBlock', blockType: string } - | { __typename?: 'ChoiceBlock', blockType: string } - | { __typename?: 'ContactEntityBlock', blockType: string, contactEntity?: ( - { __typename?: 'ContactEntity' } - & { ' $fragmentRefs'?: { 'ContactEntityFragment': ContactEntityFragment } } - ) | null } - | { __typename?: 'ContactListBlock', blockType: string } - | { __typename?: 'ContactSectionBlock', blockType: string } - | { __typename?: 'ContactSubsectionBlock', blockType: string } - | { __typename?: 'DateBlock', blockType: string } - | { __typename?: 'DateTimeBlock', blockType: string } - | { __typename?: 'DecimalBlock', blockType: string } - | { __typename?: 'DocumentChooserBlock', blockType: string } - | { __typename?: 'EmailBlock', blockType: string } - | { __typename?: 'EmbedBlock', blockType: string } - | { __typename?: 'FactBoxBlock', blockType: string } - | { __typename?: 'FeaturedBlock', blockType: string } - | { __typename?: 'FloatBlock', blockType: string } - | { __typename?: 'HorizontalRuleBlock', blockType: string } - | { __typename?: 'ImageBlock', blockType: string } - | { __typename?: 'ImageChooserBlock', blockType: string } - | { __typename?: 'ImageSliderBlock', blockType: string } - | { __typename?: 'ImageSliderItemBlock', blockType: string } - | { __typename?: 'ImageWithTextBlock', blockType: string } - | { __typename?: 'IntegerBlock', blockType: string } - | { __typename?: 'ListBlock', blockType: string } - | { __typename?: 'OpeningHoursRangeBlock', blockType: string } - | { __typename?: 'OpeningHoursWeekBlock', blockType: string } - | { __typename?: 'PageChooserBlock', blockType: string } - | { __typename?: 'PageSectionBlock', blockType: string } - | { __typename?: 'RawHTMLBlock', blockType: string } - | { __typename?: 'RegexBlock', blockType: string } - | { __typename?: 'RichTextBlock', blockType: string } - | { __typename?: 'SnippetChooserBlock', blockType: string } - | { __typename?: 'SponsorBlock', blockType: string } - | { __typename?: 'StaticBlock', blockType: string } - | { __typename?: 'StreamBlock', blockType: string } - | { __typename?: 'StreamFieldBlock', blockType: string } - | { __typename?: 'StructBlock', blockType: string } - | { __typename?: 'TextBlock', blockType: string } - | { __typename?: 'TimeBlock', blockType: string } - | { __typename?: 'URLBlock', blockType: string } - > } & { ' $fragmentName'?: 'LeafBlocks_ContactListBlock_Fragment' }; +export type FactBoxBlockFragment = { backgroundColor: string | null, factBoxBody: string } & { ' $fragmentName'?: 'FactBoxBlockFragment' }; -type LeafBlocks_ContactSectionBlock_Fragment = { __typename?: 'ContactSectionBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ContactSectionBlock_Fragment' }; +export type FeaturedBlockFragment = { title: string, linkText: string, imagePosition: string, backgroundColor: string | null, featuredBlockText: string, featuredPage: + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null, featuredImage: { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } | null } + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null, featuredImage: { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } | null } + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null } + | { contentType: string, pageType: string | null, url: string | null } + , featuredImageOverride: { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } | null } & { ' $fragmentName'?: 'FeaturedBlockFragment' }; -type LeafBlocks_ContactSubsectionBlock_Fragment = { __typename?: 'ContactSubsectionBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ContactSubsectionBlock_Fragment' }; +export type HorizontalRuleBlockFragment = { color: string | null } & { ' $fragmentName'?: 'HorizontalRuleBlockFragment' }; -type LeafBlocks_DateBlock_Fragment = { __typename?: 'DateBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_DateBlock_Fragment' }; +export type ImageSliderItemFragment = { text: string | null, image: { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } } & { ' $fragmentName'?: 'ImageSliderItemFragment' }; -type LeafBlocks_DateTimeBlock_Fragment = { __typename?: 'DateTimeBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_DateTimeBlock_Fragment' }; +export type ImageSliderBlockFragment = { images: Array< + | { __typename: 'AccordionBlock' } + | { __typename: 'BlockQuoteBlock' } + | { __typename: 'BooleanBlock' } + | { __typename: 'CharBlock' } + | { __typename: 'ChoiceBlock' } + | { __typename: 'ContactEntityBlock' } + | { __typename: 'ContactListBlock' } + | { __typename: 'ContactSectionBlock' } + | { __typename: 'ContactSubsectionBlock' } + | { __typename: 'DateBlock' } + | { __typename: 'DateTimeBlock' } + | { __typename: 'DecimalBlock' } + | { __typename: 'DocumentChooserBlock' } + | { __typename: 'EmailBlock' } + | { __typename: 'EmbedBlock' } + | { __typename: 'FactBoxBlock' } + | { __typename: 'FeaturedBlock' } + | { __typename: 'FloatBlock' } + | { __typename: 'HorizontalRuleBlock' } + | { __typename: 'ImageBlock' } + | { __typename: 'ImageChooserBlock' } + | { __typename: 'ImageSliderBlock' } + | ( + { __typename: 'ImageSliderItemBlock' } + & { ' $fragmentRefs'?: { 'ImageSliderItemFragment': ImageSliderItemFragment } } + ) + | { __typename: 'ImageWithTextBlock' } + | { __typename: 'IntegerBlock' } + | { __typename: 'ListBlock' } + | { __typename: 'OpeningHoursRangeBlock' } + | { __typename: 'OpeningHoursWeekBlock' } + | { __typename: 'PageChooserBlock' } + | { __typename: 'PageSectionBlock' } + | { __typename: 'RawHTMLBlock' } + | { __typename: 'RegexBlock' } + | { __typename: 'RichTextBlock' } + | { __typename: 'SnippetChooserBlock' } + | { __typename: 'SponsorBlock' } + | { __typename: 'StaticBlock' } + | { __typename: 'StreamBlock' } + | { __typename: 'StreamFieldBlock' } + | { __typename: 'StructBlock' } + | { __typename: 'TextBlock' } + | { __typename: 'TimeBlock' } + | { __typename: 'URLBlock' } + | null> | null } & { ' $fragmentName'?: 'ImageSliderBlockFragment' }; -type LeafBlocks_DecimalBlock_Fragment = { __typename?: 'DecimalBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_DecimalBlock_Fragment' }; +export type ImageWithTextBlockFragment = { imageFormat: string, text: string | null, image: { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } } & { ' $fragmentName'?: 'ImageWithTextBlockFragment' }; -type LeafBlocks_DocumentChooserBlock_Fragment = { __typename?: 'DocumentChooserBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_DocumentChooserBlock_Fragment' }; +export type PageSectionBlockFragment = { title: string, backgroundColor: string | null, icon: string | null, body: Array< + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | { id: string | null, blockType: string } + | null> | null } & { ' $fragmentName'?: 'PageSectionBlockFragment' }; -type LeafBlocks_EmailBlock_Fragment = { __typename?: 'EmailBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_EmailBlock_Fragment' }; +export type RichTextBlockFragment = { rawValue: string, value: string } & { ' $fragmentName'?: 'RichTextBlockFragment' }; -type LeafBlocks_EmbedBlock_Fragment = { __typename?: 'EmbedBlock', url: string, embed?: string | null, rawEmbed?: any | null, id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_EmbedBlock_Fragment' }; +export type SponsorFragment = { id: string | null, name: string | null, text: string | null, website: string | null, logo: { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } | null } & { ' $fragmentName'?: 'SponsorFragment' }; -type LeafBlocks_FactBoxBlock_Fragment = { __typename?: 'FactBoxBlock', backgroundColor?: string | null, id?: string | null, blockType: string, field: string, factBoxBody: any } & { ' $fragmentName'?: 'LeafBlocks_FactBoxBlock_Fragment' }; +type LeafBlocks_AccordionBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_AccordionBlock_Fragment' }; -type LeafBlocks_FeaturedBlock_Fragment = { __typename?: 'FeaturedBlock', title: string, linkText: string, imagePosition: string, backgroundColor?: string | null, id?: string | null, blockType: string, field: string, featuredBlockText: string, featuredPage: - | { __typename?: 'AssociationIndex', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'AssociationPage', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'ContactIndex', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'EventIndex', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'EventPage', contentType: string, pageType?: string | null, url?: string | null, featuredImage?: ( - { __typename?: 'CustomImage' } - & { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } - ) | null } - | { __typename?: 'GenericPage', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'HomePage', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'NewsIndex', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'NewsPage', contentType: string, pageType?: string | null, url?: string | null, featuredImage?: ( - { __typename?: 'CustomImage' } - & { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } - ) | null } - | { __typename?: 'Page', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'SponsorsPage', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'VenueIndex', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'VenuePage', contentType: string, pageType?: string | null, url?: string | null } - | { __typename?: 'VenueRentalIndex', contentType: string, pageType?: string | null, url?: string | null } - , featuredImageOverride?: ( - { __typename?: 'CustomImage' } - & { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } - ) | null } & { ' $fragmentName'?: 'LeafBlocks_FeaturedBlock_Fragment' }; +type LeafBlocks_BlockQuoteBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_BlockQuoteBlock_Fragment' }; -type LeafBlocks_FloatBlock_Fragment = { __typename?: 'FloatBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_FloatBlock_Fragment' }; +type LeafBlocks_BooleanBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_BooleanBlock_Fragment' }; -type LeafBlocks_HorizontalRuleBlock_Fragment = { __typename?: 'HorizontalRuleBlock', color?: string | null, id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_HorizontalRuleBlock_Fragment' }; +type LeafBlocks_CharBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_CharBlock_Fragment' }; -type LeafBlocks_ImageBlock_Fragment = { __typename?: 'ImageBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ImageBlock_Fragment' }; +type LeafBlocks_ChoiceBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ChoiceBlock_Fragment' }; -type LeafBlocks_ImageChooserBlock_Fragment = { __typename?: 'ImageChooserBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ImageChooserBlock_Fragment' }; +type LeafBlocks_ContactEntityBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ContactEntityBlock_Fragment' }; -type LeafBlocks_ImageSliderBlock_Fragment = { __typename?: 'ImageSliderBlock', id?: string | null, blockType: string, field: string, images?: Array< - | { __typename?: 'AccordionBlock' } - | { __typename?: 'BlockQuoteBlock' } - | { __typename?: 'BooleanBlock' } - | { __typename?: 'CharBlock' } - | { __typename?: 'ChoiceBlock' } - | { __typename?: 'ContactEntityBlock' } - | { __typename?: 'ContactListBlock' } - | { __typename?: 'ContactSectionBlock' } - | { __typename?: 'ContactSubsectionBlock' } - | { __typename?: 'DateBlock' } - | { __typename?: 'DateTimeBlock' } - | { __typename?: 'DecimalBlock' } - | { __typename?: 'DocumentChooserBlock' } - | { __typename?: 'EmailBlock' } - | { __typename?: 'EmbedBlock' } - | { __typename?: 'FactBoxBlock' } - | { __typename?: 'FeaturedBlock' } - | { __typename?: 'FloatBlock' } - | { __typename?: 'HorizontalRuleBlock' } - | { __typename?: 'ImageBlock' } - | { __typename?: 'ImageChooserBlock' } - | { __typename?: 'ImageSliderBlock' } - | { __typename?: 'ImageSliderItemBlock', text?: string | null, image: ( - { __typename?: 'CustomImage' } - & { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } - ) } - | { __typename?: 'ImageWithTextBlock' } - | { __typename?: 'IntegerBlock' } - | { __typename?: 'ListBlock' } - | { __typename?: 'OpeningHoursRangeBlock' } - | { __typename?: 'OpeningHoursWeekBlock' } - | { __typename?: 'PageChooserBlock' } - | { __typename?: 'PageSectionBlock' } - | { __typename?: 'RawHTMLBlock' } - | { __typename?: 'RegexBlock' } - | { __typename?: 'RichTextBlock' } - | { __typename?: 'SnippetChooserBlock' } - | { __typename?: 'SponsorBlock' } - | { __typename?: 'StaticBlock' } - | { __typename?: 'StreamBlock' } - | { __typename?: 'StreamFieldBlock' } - | { __typename?: 'StructBlock' } - | { __typename?: 'TextBlock' } - | { __typename?: 'TimeBlock' } - | { __typename?: 'URLBlock' } - | null> | null } & { ' $fragmentName'?: 'LeafBlocks_ImageSliderBlock_Fragment' }; +type LeafBlocks_ContactListBlock_Fragment = ( + { id: string | null, blockType: string, field: string } + & { ' $fragmentRefs'?: { 'ContactListBlockFragment': ContactListBlockFragment } } +) & { ' $fragmentName'?: 'LeafBlocks_ContactListBlock_Fragment' }; -type LeafBlocks_ImageSliderItemBlock_Fragment = { __typename?: 'ImageSliderItemBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ImageSliderItemBlock_Fragment' }; +type LeafBlocks_ContactSectionBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ContactSectionBlock_Fragment' }; -type LeafBlocks_ImageWithTextBlock_Fragment = { __typename?: 'ImageWithTextBlock', imageFormat: string, text?: string | null, id?: string | null, blockType: string, field: string, image: ( - { __typename?: 'CustomImage' } - & { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } - ) } & { ' $fragmentName'?: 'LeafBlocks_ImageWithTextBlock_Fragment' }; +type LeafBlocks_ContactSubsectionBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ContactSubsectionBlock_Fragment' }; -type LeafBlocks_IntegerBlock_Fragment = { __typename?: 'IntegerBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_IntegerBlock_Fragment' }; +type LeafBlocks_DateBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_DateBlock_Fragment' }; -type LeafBlocks_ListBlock_Fragment = { __typename?: 'ListBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ListBlock_Fragment' }; +type LeafBlocks_DateTimeBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_DateTimeBlock_Fragment' }; -type LeafBlocks_OpeningHoursRangeBlock_Fragment = { __typename?: 'OpeningHoursRangeBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_OpeningHoursRangeBlock_Fragment' }; +type LeafBlocks_DecimalBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_DecimalBlock_Fragment' }; -type LeafBlocks_OpeningHoursWeekBlock_Fragment = { __typename?: 'OpeningHoursWeekBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_OpeningHoursWeekBlock_Fragment' }; +type LeafBlocks_DocumentChooserBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_DocumentChooserBlock_Fragment' }; -type LeafBlocks_PageChooserBlock_Fragment = { __typename?: 'PageChooserBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_PageChooserBlock_Fragment' }; +type LeafBlocks_EmailBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_EmailBlock_Fragment' }; -type LeafBlocks_PageSectionBlock_Fragment = { __typename?: 'PageSectionBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_PageSectionBlock_Fragment' }; +type LeafBlocks_EmbedBlock_Fragment = ( + { id: string | null, blockType: string, field: string } + & { ' $fragmentRefs'?: { 'EmbedBlockFragment': EmbedBlockFragment } } +) & { ' $fragmentName'?: 'LeafBlocks_EmbedBlock_Fragment' }; -type LeafBlocks_RawHtmlBlock_Fragment = { __typename?: 'RawHTMLBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_RawHtmlBlock_Fragment' }; +type LeafBlocks_FactBoxBlock_Fragment = ( + { id: string | null, blockType: string, field: string } + & { ' $fragmentRefs'?: { 'FactBoxBlockFragment': FactBoxBlockFragment } } +) & { ' $fragmentName'?: 'LeafBlocks_FactBoxBlock_Fragment' }; -type LeafBlocks_RegexBlock_Fragment = { __typename?: 'RegexBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_RegexBlock_Fragment' }; +type LeafBlocks_FeaturedBlock_Fragment = ( + { id: string | null, blockType: string, field: string } + & { ' $fragmentRefs'?: { 'FeaturedBlockFragment': FeaturedBlockFragment } } +) & { ' $fragmentName'?: 'LeafBlocks_FeaturedBlock_Fragment' }; -type LeafBlocks_RichTextBlock_Fragment = { __typename?: 'RichTextBlock', rawValue: string, value: string, id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_RichTextBlock_Fragment' }; +type LeafBlocks_FloatBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_FloatBlock_Fragment' }; -type LeafBlocks_SnippetChooserBlock_Fragment = { __typename?: 'SnippetChooserBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_SnippetChooserBlock_Fragment' }; +type LeafBlocks_HorizontalRuleBlock_Fragment = ( + { id: string | null, blockType: string, field: string } + & { ' $fragmentRefs'?: { 'HorizontalRuleBlockFragment': HorizontalRuleBlockFragment } } +) & { ' $fragmentName'?: 'LeafBlocks_HorizontalRuleBlock_Fragment' }; -type LeafBlocks_SponsorBlock_Fragment = { __typename?: 'SponsorBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_SponsorBlock_Fragment' }; +type LeafBlocks_ImageBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ImageBlock_Fragment' }; -type LeafBlocks_StaticBlock_Fragment = { __typename?: 'StaticBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_StaticBlock_Fragment' }; +type LeafBlocks_ImageChooserBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ImageChooserBlock_Fragment' }; -type LeafBlocks_StreamBlock_Fragment = { __typename?: 'StreamBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_StreamBlock_Fragment' }; +type LeafBlocks_ImageSliderBlock_Fragment = ( + { id: string | null, blockType: string, field: string } + & { ' $fragmentRefs'?: { 'ImageSliderBlockFragment': ImageSliderBlockFragment } } +) & { ' $fragmentName'?: 'LeafBlocks_ImageSliderBlock_Fragment' }; -type LeafBlocks_StreamFieldBlock_Fragment = { __typename?: 'StreamFieldBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_StreamFieldBlock_Fragment' }; +type LeafBlocks_ImageSliderItemBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ImageSliderItemBlock_Fragment' }; -type LeafBlocks_StructBlock_Fragment = { __typename?: 'StructBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_StructBlock_Fragment' }; +type LeafBlocks_ImageWithTextBlock_Fragment = ( + { id: string | null, blockType: string, field: string } + & { ' $fragmentRefs'?: { 'ImageWithTextBlockFragment': ImageWithTextBlockFragment } } +) & { ' $fragmentName'?: 'LeafBlocks_ImageWithTextBlock_Fragment' }; -type LeafBlocks_TextBlock_Fragment = { __typename?: 'TextBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_TextBlock_Fragment' }; +type LeafBlocks_IntegerBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_IntegerBlock_Fragment' }; -type LeafBlocks_TimeBlock_Fragment = { __typename?: 'TimeBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_TimeBlock_Fragment' }; +type LeafBlocks_ListBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_ListBlock_Fragment' }; -type LeafBlocks_UrlBlock_Fragment = { __typename?: 'URLBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_UrlBlock_Fragment' }; +type LeafBlocks_OpeningHoursRangeBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_OpeningHoursRangeBlock_Fragment' }; + +type LeafBlocks_OpeningHoursWeekBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_OpeningHoursWeekBlock_Fragment' }; + +type LeafBlocks_PageChooserBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_PageChooserBlock_Fragment' }; + +type LeafBlocks_PageSectionBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_PageSectionBlock_Fragment' }; + +type LeafBlocks_RawHtmlBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_RawHtmlBlock_Fragment' }; + +type LeafBlocks_RegexBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_RegexBlock_Fragment' }; + +type LeafBlocks_RichTextBlock_Fragment = ( + { id: string | null, blockType: string, field: string } + & { ' $fragmentRefs'?: { 'RichTextBlockFragment': RichTextBlockFragment } } +) & { ' $fragmentName'?: 'LeafBlocks_RichTextBlock_Fragment' }; + +type LeafBlocks_SnippetChooserBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_SnippetChooserBlock_Fragment' }; + +type LeafBlocks_SponsorBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_SponsorBlock_Fragment' }; + +type LeafBlocks_StaticBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_StaticBlock_Fragment' }; + +type LeafBlocks_StreamBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_StreamBlock_Fragment' }; + +type LeafBlocks_StreamFieldBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_StreamFieldBlock_Fragment' }; + +type LeafBlocks_StructBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_StructBlock_Fragment' }; + +type LeafBlocks_TextBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_TextBlock_Fragment' }; + +type LeafBlocks_TimeBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_TimeBlock_Fragment' }; + +type LeafBlocks_UrlBlock_Fragment = { id: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'LeafBlocks_UrlBlock_Fragment' }; export type LeafBlocksFragment = | LeafBlocks_AccordionBlock_Fragment @@ -5077,552 +1102,180 @@ export type LeafBlocksFragment = ; type OneLevelOfBlocks_AccordionBlock_Fragment = ( - { __typename?: 'AccordionBlock', heading: string, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_AccordionBlock_Fragment': LeafBlocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_BlockQuoteBlock_Fragment': LeafBlocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_BooleanBlock_Fragment': LeafBlocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_CharBlock_Fragment': LeafBlocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ChoiceBlock_Fragment': LeafBlocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactEntityBlock_Fragment': LeafBlocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactListBlock_Fragment': LeafBlocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactSectionBlock_Fragment': LeafBlocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactSubsectionBlock_Fragment': LeafBlocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DateBlock_Fragment': LeafBlocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DateTimeBlock_Fragment': LeafBlocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DecimalBlock_Fragment': LeafBlocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DocumentChooserBlock_Fragment': LeafBlocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_EmailBlock_Fragment': LeafBlocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_EmbedBlock_Fragment': LeafBlocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_FactBoxBlock_Fragment': LeafBlocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_FeaturedBlock_Fragment': LeafBlocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_FloatBlock_Fragment': LeafBlocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_HorizontalRuleBlock_Fragment': LeafBlocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageBlock_Fragment': LeafBlocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageChooserBlock_Fragment': LeafBlocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderBlock_Fragment': LeafBlocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderItemBlock_Fragment': LeafBlocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageWithTextBlock_Fragment': LeafBlocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_IntegerBlock_Fragment': LeafBlocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ListBlock_Fragment': LeafBlocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursRangeBlock_Fragment': LeafBlocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursWeekBlock_Fragment': LeafBlocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_PageChooserBlock_Fragment': LeafBlocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_PageSectionBlock_Fragment': LeafBlocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_RawHtmlBlock_Fragment': LeafBlocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_RegexBlock_Fragment': LeafBlocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_RichTextBlock_Fragment': LeafBlocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_SnippetChooserBlock_Fragment': LeafBlocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_SponsorBlock_Fragment': LeafBlocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StaticBlock_Fragment': LeafBlocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StreamBlock_Fragment': LeafBlocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StreamFieldBlock_Fragment': LeafBlocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StructBlock_Fragment': LeafBlocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_TextBlock_Fragment': LeafBlocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_TimeBlock_Fragment': LeafBlocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_UrlBlock_Fragment': LeafBlocks_UrlBlock_Fragment } } - ) + { body: Array< + | { ' $fragmentRefs'?: { 'LeafBlocks_AccordionBlock_Fragment': LeafBlocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_BlockQuoteBlock_Fragment': LeafBlocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_BooleanBlock_Fragment': LeafBlocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_CharBlock_Fragment': LeafBlocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ChoiceBlock_Fragment': LeafBlocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ContactEntityBlock_Fragment': LeafBlocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ContactListBlock_Fragment': LeafBlocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ContactSectionBlock_Fragment': LeafBlocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ContactSubsectionBlock_Fragment': LeafBlocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_DateBlock_Fragment': LeafBlocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_DateTimeBlock_Fragment': LeafBlocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_DecimalBlock_Fragment': LeafBlocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_DocumentChooserBlock_Fragment': LeafBlocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_EmailBlock_Fragment': LeafBlocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_EmbedBlock_Fragment': LeafBlocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_FactBoxBlock_Fragment': LeafBlocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_FeaturedBlock_Fragment': LeafBlocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_FloatBlock_Fragment': LeafBlocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_HorizontalRuleBlock_Fragment': LeafBlocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ImageBlock_Fragment': LeafBlocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ImageChooserBlock_Fragment': LeafBlocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderBlock_Fragment': LeafBlocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderItemBlock_Fragment': LeafBlocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ImageWithTextBlock_Fragment': LeafBlocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_IntegerBlock_Fragment': LeafBlocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ListBlock_Fragment': LeafBlocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursRangeBlock_Fragment': LeafBlocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursWeekBlock_Fragment': LeafBlocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_PageChooserBlock_Fragment': LeafBlocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_PageSectionBlock_Fragment': LeafBlocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_RawHtmlBlock_Fragment': LeafBlocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_RegexBlock_Fragment': LeafBlocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_RichTextBlock_Fragment': LeafBlocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_SnippetChooserBlock_Fragment': LeafBlocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_SponsorBlock_Fragment': LeafBlocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_StaticBlock_Fragment': LeafBlocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_StreamBlock_Fragment': LeafBlocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_StreamFieldBlock_Fragment': LeafBlocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_StructBlock_Fragment': LeafBlocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_TextBlock_Fragment': LeafBlocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_TimeBlock_Fragment': LeafBlocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_UrlBlock_Fragment': LeafBlocks_UrlBlock_Fragment } } | null> | null } - & { ' $fragmentRefs'?: { 'LeafBlocks_AccordionBlock_Fragment': LeafBlocks_AccordionBlock_Fragment } } + & { ' $fragmentRefs'?: { 'AccordionBlockFragment': AccordionBlockFragment;'LeafBlocks_AccordionBlock_Fragment': LeafBlocks_AccordionBlock_Fragment } } ) & { ' $fragmentName'?: 'OneLevelOfBlocks_AccordionBlock_Fragment' }; -type OneLevelOfBlocks_BlockQuoteBlock_Fragment = ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_BlockQuoteBlock_Fragment': LeafBlocks_BlockQuoteBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_BlockQuoteBlock_Fragment' }; +type OneLevelOfBlocks_BlockQuoteBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_BlockQuoteBlock_Fragment': LeafBlocks_BlockQuoteBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_BlockQuoteBlock_Fragment' }; -type OneLevelOfBlocks_BooleanBlock_Fragment = ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_BooleanBlock_Fragment': LeafBlocks_BooleanBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_BooleanBlock_Fragment' }; +type OneLevelOfBlocks_BooleanBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_BooleanBlock_Fragment': LeafBlocks_BooleanBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_BooleanBlock_Fragment' }; -type OneLevelOfBlocks_CharBlock_Fragment = ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_CharBlock_Fragment': LeafBlocks_CharBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_CharBlock_Fragment' }; +type OneLevelOfBlocks_CharBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_CharBlock_Fragment': LeafBlocks_CharBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_CharBlock_Fragment' }; -type OneLevelOfBlocks_ChoiceBlock_Fragment = ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ChoiceBlock_Fragment': LeafBlocks_ChoiceBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ChoiceBlock_Fragment' }; +type OneLevelOfBlocks_ChoiceBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ChoiceBlock_Fragment': LeafBlocks_ChoiceBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ChoiceBlock_Fragment' }; -type OneLevelOfBlocks_ContactEntityBlock_Fragment = ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactEntityBlock_Fragment': LeafBlocks_ContactEntityBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ContactEntityBlock_Fragment' }; +type OneLevelOfBlocks_ContactEntityBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ContactEntityBlock_Fragment': LeafBlocks_ContactEntityBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ContactEntityBlock_Fragment' }; -type OneLevelOfBlocks_ContactListBlock_Fragment = ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactListBlock_Fragment': LeafBlocks_ContactListBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ContactListBlock_Fragment' }; +type OneLevelOfBlocks_ContactListBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ContactListBlock_Fragment': LeafBlocks_ContactListBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ContactListBlock_Fragment' }; -type OneLevelOfBlocks_ContactSectionBlock_Fragment = ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactSectionBlock_Fragment': LeafBlocks_ContactSectionBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ContactSectionBlock_Fragment' }; +type OneLevelOfBlocks_ContactSectionBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ContactSectionBlock_Fragment': LeafBlocks_ContactSectionBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ContactSectionBlock_Fragment' }; -type OneLevelOfBlocks_ContactSubsectionBlock_Fragment = ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactSubsectionBlock_Fragment': LeafBlocks_ContactSubsectionBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment' }; +type OneLevelOfBlocks_ContactSubsectionBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ContactSubsectionBlock_Fragment': LeafBlocks_ContactSubsectionBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment' }; -type OneLevelOfBlocks_DateBlock_Fragment = ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DateBlock_Fragment': LeafBlocks_DateBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_DateBlock_Fragment' }; +type OneLevelOfBlocks_DateBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_DateBlock_Fragment': LeafBlocks_DateBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_DateBlock_Fragment' }; -type OneLevelOfBlocks_DateTimeBlock_Fragment = ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DateTimeBlock_Fragment': LeafBlocks_DateTimeBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_DateTimeBlock_Fragment' }; +type OneLevelOfBlocks_DateTimeBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_DateTimeBlock_Fragment': LeafBlocks_DateTimeBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_DateTimeBlock_Fragment' }; -type OneLevelOfBlocks_DecimalBlock_Fragment = ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DecimalBlock_Fragment': LeafBlocks_DecimalBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_DecimalBlock_Fragment' }; +type OneLevelOfBlocks_DecimalBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_DecimalBlock_Fragment': LeafBlocks_DecimalBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_DecimalBlock_Fragment' }; -type OneLevelOfBlocks_DocumentChooserBlock_Fragment = ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DocumentChooserBlock_Fragment': LeafBlocks_DocumentChooserBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_DocumentChooserBlock_Fragment' }; +type OneLevelOfBlocks_DocumentChooserBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_DocumentChooserBlock_Fragment': LeafBlocks_DocumentChooserBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_DocumentChooserBlock_Fragment' }; -type OneLevelOfBlocks_EmailBlock_Fragment = ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_EmailBlock_Fragment': LeafBlocks_EmailBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_EmailBlock_Fragment' }; +type OneLevelOfBlocks_EmailBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_EmailBlock_Fragment': LeafBlocks_EmailBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_EmailBlock_Fragment' }; -type OneLevelOfBlocks_EmbedBlock_Fragment = ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_EmbedBlock_Fragment': LeafBlocks_EmbedBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_EmbedBlock_Fragment' }; +type OneLevelOfBlocks_EmbedBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_EmbedBlock_Fragment': LeafBlocks_EmbedBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_EmbedBlock_Fragment' }; -type OneLevelOfBlocks_FactBoxBlock_Fragment = ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_FactBoxBlock_Fragment': LeafBlocks_FactBoxBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_FactBoxBlock_Fragment' }; +type OneLevelOfBlocks_FactBoxBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_FactBoxBlock_Fragment': LeafBlocks_FactBoxBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_FactBoxBlock_Fragment' }; -type OneLevelOfBlocks_FeaturedBlock_Fragment = ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_FeaturedBlock_Fragment': LeafBlocks_FeaturedBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_FeaturedBlock_Fragment' }; +type OneLevelOfBlocks_FeaturedBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_FeaturedBlock_Fragment': LeafBlocks_FeaturedBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_FeaturedBlock_Fragment' }; -type OneLevelOfBlocks_FloatBlock_Fragment = ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_FloatBlock_Fragment': LeafBlocks_FloatBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_FloatBlock_Fragment' }; +type OneLevelOfBlocks_FloatBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_FloatBlock_Fragment': LeafBlocks_FloatBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_FloatBlock_Fragment' }; -type OneLevelOfBlocks_HorizontalRuleBlock_Fragment = ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_HorizontalRuleBlock_Fragment': LeafBlocks_HorizontalRuleBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment' }; +type OneLevelOfBlocks_HorizontalRuleBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_HorizontalRuleBlock_Fragment': LeafBlocks_HorizontalRuleBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment' }; -type OneLevelOfBlocks_ImageBlock_Fragment = ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageBlock_Fragment': LeafBlocks_ImageBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageBlock_Fragment' }; +type OneLevelOfBlocks_ImageBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ImageBlock_Fragment': LeafBlocks_ImageBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageBlock_Fragment' }; -type OneLevelOfBlocks_ImageChooserBlock_Fragment = ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageChooserBlock_Fragment': LeafBlocks_ImageChooserBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageChooserBlock_Fragment' }; +type OneLevelOfBlocks_ImageChooserBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ImageChooserBlock_Fragment': LeafBlocks_ImageChooserBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageChooserBlock_Fragment' }; -type OneLevelOfBlocks_ImageSliderBlock_Fragment = ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderBlock_Fragment': LeafBlocks_ImageSliderBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageSliderBlock_Fragment' }; +type OneLevelOfBlocks_ImageSliderBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderBlock_Fragment': LeafBlocks_ImageSliderBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageSliderBlock_Fragment' }; -type OneLevelOfBlocks_ImageSliderItemBlock_Fragment = ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderItemBlock_Fragment': LeafBlocks_ImageSliderItemBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment' }; +type OneLevelOfBlocks_ImageSliderItemBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderItemBlock_Fragment': LeafBlocks_ImageSliderItemBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment' }; -type OneLevelOfBlocks_ImageWithTextBlock_Fragment = ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageWithTextBlock_Fragment': LeafBlocks_ImageWithTextBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageWithTextBlock_Fragment' }; +type OneLevelOfBlocks_ImageWithTextBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ImageWithTextBlock_Fragment': LeafBlocks_ImageWithTextBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageWithTextBlock_Fragment' }; -type OneLevelOfBlocks_IntegerBlock_Fragment = ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_IntegerBlock_Fragment': LeafBlocks_IntegerBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_IntegerBlock_Fragment' }; +type OneLevelOfBlocks_IntegerBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_IntegerBlock_Fragment': LeafBlocks_IntegerBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_IntegerBlock_Fragment' }; -type OneLevelOfBlocks_ListBlock_Fragment = ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ListBlock_Fragment': LeafBlocks_ListBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_ListBlock_Fragment' }; +type OneLevelOfBlocks_ListBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_ListBlock_Fragment': LeafBlocks_ListBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_ListBlock_Fragment' }; -type OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment = ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursRangeBlock_Fragment': LeafBlocks_OpeningHoursRangeBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment' }; +type OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursRangeBlock_Fragment': LeafBlocks_OpeningHoursRangeBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment' }; -type OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment = ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursWeekBlock_Fragment': LeafBlocks_OpeningHoursWeekBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment' }; +type OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursWeekBlock_Fragment': LeafBlocks_OpeningHoursWeekBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment' }; -type OneLevelOfBlocks_PageChooserBlock_Fragment = ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_PageChooserBlock_Fragment': LeafBlocks_PageChooserBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_PageChooserBlock_Fragment' }; +type OneLevelOfBlocks_PageChooserBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_PageChooserBlock_Fragment': LeafBlocks_PageChooserBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_PageChooserBlock_Fragment' }; type OneLevelOfBlocks_PageSectionBlock_Fragment = ( - { __typename?: 'PageSectionBlock', title: string, backgroundColor?: string | null, icon?: string | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_AccordionBlock_Fragment': LeafBlocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_BlockQuoteBlock_Fragment': LeafBlocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_BooleanBlock_Fragment': LeafBlocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_CharBlock_Fragment': LeafBlocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ChoiceBlock_Fragment': LeafBlocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactEntityBlock_Fragment': LeafBlocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactListBlock_Fragment': LeafBlocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactSectionBlock_Fragment': LeafBlocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ContactSubsectionBlock_Fragment': LeafBlocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DateBlock_Fragment': LeafBlocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DateTimeBlock_Fragment': LeafBlocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DecimalBlock_Fragment': LeafBlocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_DocumentChooserBlock_Fragment': LeafBlocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_EmailBlock_Fragment': LeafBlocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_EmbedBlock_Fragment': LeafBlocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_FactBoxBlock_Fragment': LeafBlocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_FeaturedBlock_Fragment': LeafBlocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_FloatBlock_Fragment': LeafBlocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_HorizontalRuleBlock_Fragment': LeafBlocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageBlock_Fragment': LeafBlocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageChooserBlock_Fragment': LeafBlocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderBlock_Fragment': LeafBlocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderItemBlock_Fragment': LeafBlocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ImageWithTextBlock_Fragment': LeafBlocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_IntegerBlock_Fragment': LeafBlocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_ListBlock_Fragment': LeafBlocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursRangeBlock_Fragment': LeafBlocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursWeekBlock_Fragment': LeafBlocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_PageChooserBlock_Fragment': LeafBlocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_PageSectionBlock_Fragment': LeafBlocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_RawHtmlBlock_Fragment': LeafBlocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_RegexBlock_Fragment': LeafBlocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_RichTextBlock_Fragment': LeafBlocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_SnippetChooserBlock_Fragment': LeafBlocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_SponsorBlock_Fragment': LeafBlocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StaticBlock_Fragment': LeafBlocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StreamBlock_Fragment': LeafBlocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StreamFieldBlock_Fragment': LeafBlocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StructBlock_Fragment': LeafBlocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_TextBlock_Fragment': LeafBlocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_TimeBlock_Fragment': LeafBlocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_UrlBlock_Fragment': LeafBlocks_UrlBlock_Fragment } } - ) + { body: Array< + | { ' $fragmentRefs'?: { 'LeafBlocks_AccordionBlock_Fragment': LeafBlocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_BlockQuoteBlock_Fragment': LeafBlocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_BooleanBlock_Fragment': LeafBlocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_CharBlock_Fragment': LeafBlocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ChoiceBlock_Fragment': LeafBlocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ContactEntityBlock_Fragment': LeafBlocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ContactListBlock_Fragment': LeafBlocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ContactSectionBlock_Fragment': LeafBlocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ContactSubsectionBlock_Fragment': LeafBlocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_DateBlock_Fragment': LeafBlocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_DateTimeBlock_Fragment': LeafBlocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_DecimalBlock_Fragment': LeafBlocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_DocumentChooserBlock_Fragment': LeafBlocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_EmailBlock_Fragment': LeafBlocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_EmbedBlock_Fragment': LeafBlocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_FactBoxBlock_Fragment': LeafBlocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_FeaturedBlock_Fragment': LeafBlocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_FloatBlock_Fragment': LeafBlocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_HorizontalRuleBlock_Fragment': LeafBlocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ImageBlock_Fragment': LeafBlocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ImageChooserBlock_Fragment': LeafBlocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderBlock_Fragment': LeafBlocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ImageSliderItemBlock_Fragment': LeafBlocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ImageWithTextBlock_Fragment': LeafBlocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_IntegerBlock_Fragment': LeafBlocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_ListBlock_Fragment': LeafBlocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursRangeBlock_Fragment': LeafBlocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_OpeningHoursWeekBlock_Fragment': LeafBlocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_PageChooserBlock_Fragment': LeafBlocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_PageSectionBlock_Fragment': LeafBlocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_RawHtmlBlock_Fragment': LeafBlocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_RegexBlock_Fragment': LeafBlocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_RichTextBlock_Fragment': LeafBlocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_SnippetChooserBlock_Fragment': LeafBlocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_SponsorBlock_Fragment': LeafBlocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_StaticBlock_Fragment': LeafBlocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_StreamBlock_Fragment': LeafBlocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_StreamFieldBlock_Fragment': LeafBlocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_StructBlock_Fragment': LeafBlocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_TextBlock_Fragment': LeafBlocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_TimeBlock_Fragment': LeafBlocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'LeafBlocks_UrlBlock_Fragment': LeafBlocks_UrlBlock_Fragment } } | null> | null } - & { ' $fragmentRefs'?: { 'LeafBlocks_PageSectionBlock_Fragment': LeafBlocks_PageSectionBlock_Fragment } } + & { ' $fragmentRefs'?: { 'PageSectionBlockFragment': PageSectionBlockFragment;'LeafBlocks_PageSectionBlock_Fragment': LeafBlocks_PageSectionBlock_Fragment } } ) & { ' $fragmentName'?: 'OneLevelOfBlocks_PageSectionBlock_Fragment' }; -type OneLevelOfBlocks_RawHtmlBlock_Fragment = ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_RawHtmlBlock_Fragment': LeafBlocks_RawHtmlBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_RawHtmlBlock_Fragment' }; +type OneLevelOfBlocks_RawHtmlBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_RawHtmlBlock_Fragment': LeafBlocks_RawHtmlBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_RawHtmlBlock_Fragment' }; -type OneLevelOfBlocks_RegexBlock_Fragment = ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_RegexBlock_Fragment': LeafBlocks_RegexBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_RegexBlock_Fragment' }; +type OneLevelOfBlocks_RegexBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_RegexBlock_Fragment': LeafBlocks_RegexBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_RegexBlock_Fragment' }; -type OneLevelOfBlocks_RichTextBlock_Fragment = ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_RichTextBlock_Fragment': LeafBlocks_RichTextBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_RichTextBlock_Fragment' }; +type OneLevelOfBlocks_RichTextBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_RichTextBlock_Fragment': LeafBlocks_RichTextBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_RichTextBlock_Fragment' }; -type OneLevelOfBlocks_SnippetChooserBlock_Fragment = ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_SnippetChooserBlock_Fragment': LeafBlocks_SnippetChooserBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_SnippetChooserBlock_Fragment' }; +type OneLevelOfBlocks_SnippetChooserBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_SnippetChooserBlock_Fragment': LeafBlocks_SnippetChooserBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_SnippetChooserBlock_Fragment' }; -type OneLevelOfBlocks_SponsorBlock_Fragment = ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_SponsorBlock_Fragment': LeafBlocks_SponsorBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_SponsorBlock_Fragment' }; +type OneLevelOfBlocks_SponsorBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_SponsorBlock_Fragment': LeafBlocks_SponsorBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_SponsorBlock_Fragment' }; -type OneLevelOfBlocks_StaticBlock_Fragment = ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StaticBlock_Fragment': LeafBlocks_StaticBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_StaticBlock_Fragment' }; +type OneLevelOfBlocks_StaticBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_StaticBlock_Fragment': LeafBlocks_StaticBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_StaticBlock_Fragment' }; -type OneLevelOfBlocks_StreamBlock_Fragment = ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StreamBlock_Fragment': LeafBlocks_StreamBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_StreamBlock_Fragment' }; +type OneLevelOfBlocks_StreamBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_StreamBlock_Fragment': LeafBlocks_StreamBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_StreamBlock_Fragment' }; -type OneLevelOfBlocks_StreamFieldBlock_Fragment = ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StreamFieldBlock_Fragment': LeafBlocks_StreamFieldBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_StreamFieldBlock_Fragment' }; +type OneLevelOfBlocks_StreamFieldBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_StreamFieldBlock_Fragment': LeafBlocks_StreamFieldBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_StreamFieldBlock_Fragment' }; -type OneLevelOfBlocks_StructBlock_Fragment = ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_StructBlock_Fragment': LeafBlocks_StructBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_StructBlock_Fragment' }; +type OneLevelOfBlocks_StructBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_StructBlock_Fragment': LeafBlocks_StructBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_StructBlock_Fragment' }; -type OneLevelOfBlocks_TextBlock_Fragment = ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_TextBlock_Fragment': LeafBlocks_TextBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_TextBlock_Fragment' }; +type OneLevelOfBlocks_TextBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_TextBlock_Fragment': LeafBlocks_TextBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_TextBlock_Fragment' }; -type OneLevelOfBlocks_TimeBlock_Fragment = ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_TimeBlock_Fragment': LeafBlocks_TimeBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_TimeBlock_Fragment' }; +type OneLevelOfBlocks_TimeBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_TimeBlock_Fragment': LeafBlocks_TimeBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_TimeBlock_Fragment' }; -type OneLevelOfBlocks_UrlBlock_Fragment = ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'LeafBlocks_UrlBlock_Fragment': LeafBlocks_UrlBlock_Fragment } } -) & { ' $fragmentName'?: 'OneLevelOfBlocks_UrlBlock_Fragment' }; +type OneLevelOfBlocks_UrlBlock_Fragment = { ' $fragmentRefs'?: { 'LeafBlocks_UrlBlock_Fragment': LeafBlocks_UrlBlock_Fragment } } & { ' $fragmentName'?: 'OneLevelOfBlocks_UrlBlock_Fragment' }; export type OneLevelOfBlocksFragment = | OneLevelOfBlocks_AccordionBlock_Fragment @@ -5670,890 +1323,272 @@ export type OneLevelOfBlocksFragment = ; type Blocks_AccordionBlock_Fragment = ( - { __typename?: 'AccordionBlock', heading: string, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } - ) + { body: Array< + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } | null> | null } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } + & { ' $fragmentRefs'?: { 'AccordionBlockFragment': AccordionBlockFragment;'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } ) & { ' $fragmentName'?: 'Blocks_AccordionBlock_Fragment' }; -type Blocks_BlockQuoteBlock_Fragment = ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_BlockQuoteBlock_Fragment' }; +type Blocks_BlockQuoteBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_BlockQuoteBlock_Fragment' }; -type Blocks_BooleanBlock_Fragment = ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_BooleanBlock_Fragment' }; +type Blocks_BooleanBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_BooleanBlock_Fragment' }; -type Blocks_CharBlock_Fragment = ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_CharBlock_Fragment' }; +type Blocks_CharBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_CharBlock_Fragment' }; -type Blocks_ChoiceBlock_Fragment = ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_ChoiceBlock_Fragment' }; +type Blocks_ChoiceBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_ChoiceBlock_Fragment' }; -type Blocks_ContactEntityBlock_Fragment = ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_ContactEntityBlock_Fragment' }; +type Blocks_ContactEntityBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_ContactEntityBlock_Fragment' }; -type Blocks_ContactListBlock_Fragment = ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_ContactListBlock_Fragment' }; +type Blocks_ContactListBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_ContactListBlock_Fragment' }; type Blocks_ContactSectionBlock_Fragment = ( - { __typename?: 'ContactSectionBlock', title: string, text?: string | null, blocks?: Array< + { blocks: Array< + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock', title: string, text?: string | null, blocks?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } - ) + { blocks: Array< + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } | null> | null } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } + & { ' $fragmentRefs'?: { 'ContactSubsectionBlockFragment': ContactSubsectionBlockFragment;'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } ) + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } | null> | null } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } + & { ' $fragmentRefs'?: { 'ContactSectionBlockFragment': ContactSectionBlockFragment;'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } ) & { ' $fragmentName'?: 'Blocks_ContactSectionBlock_Fragment' }; -type Blocks_ContactSubsectionBlock_Fragment = ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_ContactSubsectionBlock_Fragment' }; +type Blocks_ContactSubsectionBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_ContactSubsectionBlock_Fragment' }; -type Blocks_DateBlock_Fragment = ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_DateBlock_Fragment' }; +type Blocks_DateBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_DateBlock_Fragment' }; -type Blocks_DateTimeBlock_Fragment = ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_DateTimeBlock_Fragment' }; +type Blocks_DateTimeBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_DateTimeBlock_Fragment' }; -type Blocks_DecimalBlock_Fragment = ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_DecimalBlock_Fragment' }; +type Blocks_DecimalBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_DecimalBlock_Fragment' }; -type Blocks_DocumentChooserBlock_Fragment = ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_DocumentChooserBlock_Fragment' }; +type Blocks_DocumentChooserBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_DocumentChooserBlock_Fragment' }; -type Blocks_EmailBlock_Fragment = ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_EmailBlock_Fragment' }; +type Blocks_EmailBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_EmailBlock_Fragment' }; -type Blocks_EmbedBlock_Fragment = ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_EmbedBlock_Fragment' }; +type Blocks_EmbedBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_EmbedBlock_Fragment' }; -type Blocks_FactBoxBlock_Fragment = ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_FactBoxBlock_Fragment' }; +type Blocks_FactBoxBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_FactBoxBlock_Fragment' }; -type Blocks_FeaturedBlock_Fragment = ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_FeaturedBlock_Fragment' }; +type Blocks_FeaturedBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_FeaturedBlock_Fragment' }; -type Blocks_FloatBlock_Fragment = ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_FloatBlock_Fragment' }; +type Blocks_FloatBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_FloatBlock_Fragment' }; -type Blocks_HorizontalRuleBlock_Fragment = ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_HorizontalRuleBlock_Fragment' }; +type Blocks_HorizontalRuleBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_HorizontalRuleBlock_Fragment' }; -type Blocks_ImageBlock_Fragment = ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_ImageBlock_Fragment' }; +type Blocks_ImageBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_ImageBlock_Fragment' }; -type Blocks_ImageChooserBlock_Fragment = ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_ImageChooserBlock_Fragment' }; +type Blocks_ImageChooserBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_ImageChooserBlock_Fragment' }; -type Blocks_ImageSliderBlock_Fragment = ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_ImageSliderBlock_Fragment' }; +type Blocks_ImageSliderBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_ImageSliderBlock_Fragment' }; -type Blocks_ImageSliderItemBlock_Fragment = ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_ImageSliderItemBlock_Fragment' }; +type Blocks_ImageSliderItemBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_ImageSliderItemBlock_Fragment' }; -type Blocks_ImageWithTextBlock_Fragment = ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_ImageWithTextBlock_Fragment' }; +type Blocks_ImageWithTextBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_ImageWithTextBlock_Fragment' }; -type Blocks_IntegerBlock_Fragment = ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_IntegerBlock_Fragment' }; +type Blocks_IntegerBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_IntegerBlock_Fragment' }; -type Blocks_ListBlock_Fragment = ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_ListBlock_Fragment' }; +type Blocks_ListBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_ListBlock_Fragment' }; -type Blocks_OpeningHoursRangeBlock_Fragment = ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_OpeningHoursRangeBlock_Fragment' }; +type Blocks_OpeningHoursRangeBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_OpeningHoursRangeBlock_Fragment' }; -type Blocks_OpeningHoursWeekBlock_Fragment = ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_OpeningHoursWeekBlock_Fragment' }; +type Blocks_OpeningHoursWeekBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_OpeningHoursWeekBlock_Fragment' }; -type Blocks_PageChooserBlock_Fragment = ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_PageChooserBlock_Fragment' }; +type Blocks_PageChooserBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_PageChooserBlock_Fragment' }; type Blocks_PageSectionBlock_Fragment = ( - { __typename?: 'PageSectionBlock', title: string, backgroundColor?: string | null, icon?: string | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } - ) + { body: Array< + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } | null> | null } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } + & { ' $fragmentRefs'?: { 'PageSectionBlockFragment': PageSectionBlockFragment;'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } ) & { ' $fragmentName'?: 'Blocks_PageSectionBlock_Fragment' }; -type Blocks_RawHtmlBlock_Fragment = ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_RawHtmlBlock_Fragment' }; +type Blocks_RawHtmlBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_RawHtmlBlock_Fragment' }; -type Blocks_RegexBlock_Fragment = ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_RegexBlock_Fragment' }; +type Blocks_RegexBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_RegexBlock_Fragment' }; -type Blocks_RichTextBlock_Fragment = ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_RichTextBlock_Fragment' }; +type Blocks_RichTextBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_RichTextBlock_Fragment' }; -type Blocks_SnippetChooserBlock_Fragment = ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_SnippetChooserBlock_Fragment' }; +type Blocks_SnippetChooserBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_SnippetChooserBlock_Fragment' }; -type Blocks_SponsorBlock_Fragment = ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_SponsorBlock_Fragment' }; +type Blocks_SponsorBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_SponsorBlock_Fragment' }; -type Blocks_StaticBlock_Fragment = ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_StaticBlock_Fragment' }; +type Blocks_StaticBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_StaticBlock_Fragment' }; -type Blocks_StreamBlock_Fragment = ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_StreamBlock_Fragment' }; +type Blocks_StreamBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_StreamBlock_Fragment' }; -type Blocks_StreamFieldBlock_Fragment = ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_StreamFieldBlock_Fragment' }; +type Blocks_StreamFieldBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_StreamFieldBlock_Fragment' }; -type Blocks_StructBlock_Fragment = ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_StructBlock_Fragment' }; +type Blocks_StructBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_StructBlock_Fragment' }; -type Blocks_TextBlock_Fragment = ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_TextBlock_Fragment' }; +type Blocks_TextBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_TextBlock_Fragment' }; -type Blocks_TimeBlock_Fragment = ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_TimeBlock_Fragment' }; +type Blocks_TimeBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_TimeBlock_Fragment' }; -type Blocks_UrlBlock_Fragment = ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } -) & { ' $fragmentName'?: 'Blocks_UrlBlock_Fragment' }; +type Blocks_UrlBlock_Fragment = { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } & { ' $fragmentName'?: 'Blocks_UrlBlock_Fragment' }; export type BlocksFragment = | Blocks_AccordionBlock_Fragment @@ -6600,846 +1635,263 @@ export type BlocksFragment = | Blocks_UrlBlock_Fragment ; -export type ImageFragment = { __typename?: 'CustomImage', id?: string | null, url: string, width: number, height: number, alt?: string | null, attribution?: string | null } & { ' $fragmentName'?: 'ImageFragment' }; +export type ImageFragment = { id: string | null, url: string, width: number, height: number, alt: string | null, attribution: string | null } & { ' $fragmentName'?: 'ImageFragment' }; -export type ContactEntityFragment = { __typename?: 'ContactEntity', id?: string | null, name: string, contactType: string, title?: string | null, email?: string | null, phoneNumber?: string | null, image?: ( - { __typename?: 'CustomImage' } - & { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } - ) | null } & { ' $fragmentName'?: 'ContactEntityFragment' }; +export type ContactEntityFragment = { id: string | null, name: string, contactType: string, title: string | null, email: string | null, phoneNumber: string | null, image: { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } | null } & { ' $fragmentName'?: 'ContactEntityFragment' }; -export type EventFragment = { __typename: 'EventPage', id?: string | null, slug: string, seoTitle: string, searchDescription?: string | null, title: string, subtitle?: string | null, lead?: any | null, pig?: string | null, facebookUrl?: string | null, ticketUrl?: string | null, free?: boolean | null, priceRegular?: string | null, priceMember?: string | null, priceStudent?: string | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } - ) - | null> | null, featuredImage?: ( - { __typename?: 'CustomImage' } - & { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } - ) | null, categories: Array<{ __typename?: 'EventCategory', name: string, slug: string, pig: string }>, occurrences: Array<{ __typename: 'EventOccurrence', id?: string | null, start: string, end?: string | null, venueCustom?: string | null, venue?: { __typename: 'VenuePage', id?: string | null, slug: string, title: string, preposition?: string | null, url?: string | null } | null }>, organizers: Array<{ __typename?: 'EventOrganizer', id?: string | null, name: string, slug: string, externalUrl?: string | null, association?: { __typename?: 'AssociationPage', url?: string | null } | null }> } & { ' $fragmentName'?: 'EventFragment' }; +export type EventCategoryFragment = { __typename: 'EventCategory', name: string, slug: string, pig: string, showInFilters: boolean } & { ' $fragmentName'?: 'EventCategoryFragment' }; -export type EventIndexFragment = { __typename: 'EventIndex', id?: string | null, slug: string, seoTitle: string, searchDescription?: string | null, title: string } & { ' $fragmentName'?: 'EventIndexFragment' }; +export type EventOrganizerFragment = { __typename: 'EventOrganizer', id: string | null, name: string, slug: string, externalUrl: string | null, association: { url: string | null } | null } & { ' $fragmentName'?: 'EventOrganizerFragment' }; + +export type EventFragment = { __typename: 'EventPage', id: string | null, slug: string, seoTitle: string, searchDescription: string | null, title: string, subtitle: string | null, lead: string | null, pig: string | null, facebookUrl: string | null, ticketUrl: string | null, free: boolean | null, priceRegular: string | null, priceMember: string | null, priceStudent: string | null, body: Array< + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_AccordionBlock_Fragment': OneLevelOfBlocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BlockQuoteBlock_Fragment': OneLevelOfBlocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_BooleanBlock_Fragment': OneLevelOfBlocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_CharBlock_Fragment': OneLevelOfBlocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ChoiceBlock_Fragment': OneLevelOfBlocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactEntityBlock_Fragment': OneLevelOfBlocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactListBlock_Fragment': OneLevelOfBlocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSectionBlock_Fragment': OneLevelOfBlocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ContactSubsectionBlock_Fragment': OneLevelOfBlocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateBlock_Fragment': OneLevelOfBlocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DateTimeBlock_Fragment': OneLevelOfBlocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DecimalBlock_Fragment': OneLevelOfBlocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_DocumentChooserBlock_Fragment': OneLevelOfBlocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmailBlock_Fragment': OneLevelOfBlocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_EmbedBlock_Fragment': OneLevelOfBlocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FactBoxBlock_Fragment': OneLevelOfBlocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FeaturedBlock_Fragment': OneLevelOfBlocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_FloatBlock_Fragment': OneLevelOfBlocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageBlock_Fragment': OneLevelOfBlocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageChooserBlock_Fragment': OneLevelOfBlocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderBlock_Fragment': OneLevelOfBlocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment': OneLevelOfBlocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ImageWithTextBlock_Fragment': OneLevelOfBlocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_IntegerBlock_Fragment': OneLevelOfBlocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_ListBlock_Fragment': OneLevelOfBlocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment': OneLevelOfBlocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment': OneLevelOfBlocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageSectionBlock_Fragment': OneLevelOfBlocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RawHtmlBlock_Fragment': OneLevelOfBlocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RegexBlock_Fragment': OneLevelOfBlocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_RichTextBlock_Fragment': OneLevelOfBlocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SnippetChooserBlock_Fragment': OneLevelOfBlocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_SponsorBlock_Fragment': OneLevelOfBlocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StaticBlock_Fragment': OneLevelOfBlocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamBlock_Fragment': OneLevelOfBlocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StreamFieldBlock_Fragment': OneLevelOfBlocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_StructBlock_Fragment': OneLevelOfBlocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TextBlock_Fragment': OneLevelOfBlocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_TimeBlock_Fragment': OneLevelOfBlocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } } + | null> | null, featuredImage: { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } | null, categories: Array<{ ' $fragmentRefs'?: { 'EventCategoryFragment': EventCategoryFragment } }>, occurrences: Array<{ __typename: 'EventOccurrence', id: string | null, start: string, end: string | null, venueCustom: string | null, venue: { __typename: 'VenuePage', id: string | null, slug: string, title: string, preposition: string | null, url: string | null } | null }>, organizers: Array<{ ' $fragmentRefs'?: { 'EventOrganizerFragment': EventOrganizerFragment } }> } & { ' $fragmentName'?: 'EventFragment' }; + +export type EventIndexFragment = { __typename: 'EventIndex', id: string | null, slug: string, seoTitle: string, searchDescription: string | null, title: string } & { ' $fragmentName'?: 'EventIndexFragment' }; export type EventIndexMetadataQueryVariables = Exact<{ [key: string]: never; }>; -export type EventIndexMetadataQuery = { __typename?: 'Query', index?: ( - { __typename?: 'EventIndex' } - & { ' $fragmentRefs'?: { 'EventIndexFragment': EventIndexFragment } } - ) | null }; +export type EventIndexMetadataQuery = { index: { ' $fragmentRefs'?: { 'EventIndexFragment': EventIndexFragment } } | null }; export type FutureEventsQueryVariables = Exact<{ [key: string]: never; }>; -export type FutureEventsQuery = { __typename?: 'Query', index?: ( - { __typename?: 'EventIndex' } - & { ' $fragmentRefs'?: { 'EventIndexFragment': EventIndexFragment } } - ) | null, events?: { __typename?: 'EventIndex', futureEvents: Array<( - { __typename?: 'EventPage' } - & { ' $fragmentRefs'?: { 'EventFragment': EventFragment } } - )> } | null, eventCategories?: Array<{ __typename?: 'EventCategory', name: string, slug: string, showInFilters: boolean } | null> | null, eventOrganizers?: Array<{ __typename?: 'EventOrganizer', id?: string | null, name: string, slug: string } | null> | null, venues: Array< - | { __typename?: 'AssociationIndex' } - | { __typename?: 'AssociationPage' } - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | { __typename?: 'GenericPage' } - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | { __typename?: 'NewsPage' } - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | { __typename?: 'VenuePage', id?: string | null, title: string, slug: string, preposition?: string | null } - | { __typename?: 'VenueRentalIndex' } +export type FutureEventsQuery = { index: { ' $fragmentRefs'?: { 'EventIndexFragment': EventIndexFragment } } | null, events: { futureEvents: Array<{ ' $fragmentRefs'?: { 'EventFragment': EventFragment } }> } | null, eventCategories: Array<{ ' $fragmentRefs'?: { 'EventCategoryFragment': EventCategoryFragment } } | null> | null, eventOrganizers: Array<{ ' $fragmentRefs'?: { 'EventOrganizerFragment': EventOrganizerFragment } } | null> | null, venues: Array< + | { id: string | null, title: string, slug: string, preposition: string | null } + | Record > }; -export type NewsFragment = { __typename: 'NewsPage', id?: string | null, slug: string, seoTitle: string, searchDescription?: string | null, title: string, firstPublishedAt?: any | null, excerpt?: string | null, lead?: any | null, featuredImage?: ( - { __typename?: 'CustomImage' } - & { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } - ) | null, body?: Array< - | ( - { __typename?: 'AccordionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } - ) - | ( - { __typename?: 'BlockQuoteBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } - ) - | ( - { __typename?: 'BooleanBlock' } - & { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } - ) - | ( - { __typename?: 'CharBlock' } - & { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } - ) - | ( - { __typename?: 'ChoiceBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } - ) - | ( - { __typename?: 'ContactEntityBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } - ) - | ( - { __typename?: 'ContactListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } - ) - | ( - { __typename?: 'ContactSubsectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } - ) - | ( - { __typename?: 'DateBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } - ) - | ( - { __typename?: 'DateTimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } - ) - | ( - { __typename?: 'DecimalBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } - ) - | ( - { __typename?: 'DocumentChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } - ) - | ( - { __typename?: 'EmailBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } - ) - | ( - { __typename?: 'EmbedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } - ) - | ( - { __typename?: 'FactBoxBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } - ) - | ( - { __typename?: 'FeaturedBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } - ) - | ( - { __typename?: 'FloatBlock' } - & { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } - ) - | ( - { __typename?: 'HorizontalRuleBlock' } - & { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } - ) - | ( - { __typename?: 'ImageBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } - ) - | ( - { __typename?: 'ImageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } - ) - | ( - { __typename?: 'ImageSliderItemBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } - ) - | ( - { __typename?: 'ImageWithTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } - ) - | ( - { __typename?: 'IntegerBlock' } - & { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } - ) - | ( - { __typename?: 'ListBlock' } - & { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } - ) - | ( - { __typename?: 'OpeningHoursWeekBlock' } - & { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } - ) - | ( - { __typename?: 'PageChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } - ) - | ( - { __typename?: 'PageSectionBlock' } - & { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } - ) - | ( - { __typename?: 'RawHTMLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } - ) - | ( - { __typename?: 'RegexBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } - ) - | ( - { __typename?: 'RichTextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } - ) - | ( - { __typename?: 'SnippetChooserBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } - ) - | ( - { __typename?: 'SponsorBlock' } - & { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } - ) - | ( - { __typename?: 'StaticBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } - ) - | ( - { __typename?: 'StreamBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } - ) - | ( - { __typename?: 'StreamFieldBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } - ) - | ( - { __typename?: 'StructBlock' } - & { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } - ) - | ( - { __typename?: 'TextBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } - ) - | ( - { __typename?: 'TimeBlock' } - & { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } - ) - | ( - { __typename?: 'URLBlock' } - & { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } - ) +export type NewsFragment = { __typename: 'NewsPage', id: string | null, slug: string, seoTitle: string, searchDescription: string | null, title: string, firstPublishedAt: string | null, excerpt: string | null, lead: string | null, featuredImage: { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } } | null, body: Array< + | { ' $fragmentRefs'?: { 'Blocks_AccordionBlock_Fragment': Blocks_AccordionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BlockQuoteBlock_Fragment': Blocks_BlockQuoteBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_BooleanBlock_Fragment': Blocks_BooleanBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_CharBlock_Fragment': Blocks_CharBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ChoiceBlock_Fragment': Blocks_ChoiceBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactEntityBlock_Fragment': Blocks_ContactEntityBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactListBlock_Fragment': Blocks_ContactListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSectionBlock_Fragment': Blocks_ContactSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ContactSubsectionBlock_Fragment': Blocks_ContactSubsectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateBlock_Fragment': Blocks_DateBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DateTimeBlock_Fragment': Blocks_DateTimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DecimalBlock_Fragment': Blocks_DecimalBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_DocumentChooserBlock_Fragment': Blocks_DocumentChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmailBlock_Fragment': Blocks_EmailBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_EmbedBlock_Fragment': Blocks_EmbedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FactBoxBlock_Fragment': Blocks_FactBoxBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FeaturedBlock_Fragment': Blocks_FeaturedBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_FloatBlock_Fragment': Blocks_FloatBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_HorizontalRuleBlock_Fragment': Blocks_HorizontalRuleBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageBlock_Fragment': Blocks_ImageBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageChooserBlock_Fragment': Blocks_ImageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderBlock_Fragment': Blocks_ImageSliderBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageSliderItemBlock_Fragment': Blocks_ImageSliderItemBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ImageWithTextBlock_Fragment': Blocks_ImageWithTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_IntegerBlock_Fragment': Blocks_IntegerBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_ListBlock_Fragment': Blocks_ListBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursRangeBlock_Fragment': Blocks_OpeningHoursRangeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_OpeningHoursWeekBlock_Fragment': Blocks_OpeningHoursWeekBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageChooserBlock_Fragment': Blocks_PageChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_PageSectionBlock_Fragment': Blocks_PageSectionBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RawHtmlBlock_Fragment': Blocks_RawHtmlBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RegexBlock_Fragment': Blocks_RegexBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_RichTextBlock_Fragment': Blocks_RichTextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SnippetChooserBlock_Fragment': Blocks_SnippetChooserBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_SponsorBlock_Fragment': Blocks_SponsorBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StaticBlock_Fragment': Blocks_StaticBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamBlock_Fragment': Blocks_StreamBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StreamFieldBlock_Fragment': Blocks_StreamFieldBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_StructBlock_Fragment': Blocks_StructBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TextBlock_Fragment': Blocks_TextBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_TimeBlock_Fragment': Blocks_TimeBlock_Fragment } } + | { ' $fragmentRefs'?: { 'Blocks_UrlBlock_Fragment': Blocks_UrlBlock_Fragment } } | null> | null } & { ' $fragmentName'?: 'NewsFragment' }; -export type NewsIndexFragment = { __typename: 'NewsIndex', id?: string | null, slug: string, seoTitle: string, searchDescription?: string | null, title: string, lead?: any | null } & { ' $fragmentName'?: 'NewsIndexFragment' }; +export type NewsIndexFragment = { __typename: 'NewsIndex', id: string | null, slug: string, seoTitle: string, searchDescription: string | null, title: string, lead: string | null } & { ' $fragmentName'?: 'NewsIndexFragment' }; export type NewsQueryVariables = Exact<{ [key: string]: never; }>; -export type NewsQuery = { __typename?: 'Query', index?: ( - { __typename?: 'NewsIndex' } - & { ' $fragmentRefs'?: { 'NewsIndexFragment': NewsIndexFragment } } - ) | null, news: Array< - | { __typename?: 'AssociationIndex' } - | { __typename?: 'AssociationPage' } - | { __typename?: 'ContactIndex' } - | { __typename?: 'EventIndex' } - | { __typename?: 'EventPage' } - | { __typename?: 'GenericPage' } - | { __typename?: 'HomePage' } - | { __typename?: 'NewsIndex' } - | ( - { __typename?: 'NewsPage' } - & { ' $fragmentRefs'?: { 'NewsFragment': NewsFragment } } - ) - | { __typename?: 'Page' } - | { __typename?: 'SponsorsPage' } - | { __typename?: 'VenueIndex' } - | { __typename?: 'VenuePage' } - | { __typename?: 'VenueRentalIndex' } +export type NewsQuery = { index: { ' $fragmentRefs'?: { 'NewsIndexFragment': NewsIndexFragment } } | null, news: Array< + | { ' $fragmentRefs'?: { 'NewsFragment': NewsFragment } } + | Record > }; export type OpeningHoursSetsQueryVariables = Exact<{ [key: string]: never; }>; -export type OpeningHoursSetsQuery = { __typename?: 'Query', openingHoursSets?: Array<( - { __typename?: 'OpeningHoursSet' } - & { ' $fragmentRefs'?: { 'OpeningHoursSetFragmentFragment': OpeningHoursSetFragmentFragment } } - ) | null> | null }; +export type OpeningHoursSetsQuery = { openingHoursSets: Array<{ ' $fragmentRefs'?: { 'OpeningHoursSetFragment': OpeningHoursSetFragment } } | null> | null }; -export type OpeningHoursSetFragmentFragment = { __typename?: 'OpeningHoursSet', name: string, effectiveFrom: string, effectiveTo?: string | null, announcement?: string | null, items?: Array<{ __typename?: 'OpeningHoursItem', id?: string | null, function: string, week?: Array< - | { __typename?: 'AccordionBlock', id?: string | null, blockType: string } - | { __typename?: 'BlockQuoteBlock', id?: string | null, blockType: string } - | { __typename?: 'BooleanBlock', id?: string | null, blockType: string } - | { __typename?: 'CharBlock', id?: string | null, blockType: string } - | { __typename?: 'ChoiceBlock', id?: string | null, blockType: string } - | { __typename?: 'ContactEntityBlock', id?: string | null, blockType: string } - | { __typename?: 'ContactListBlock', id?: string | null, blockType: string } - | { __typename?: 'ContactSectionBlock', id?: string | null, blockType: string } - | { __typename?: 'ContactSubsectionBlock', id?: string | null, blockType: string } - | { __typename?: 'DateBlock', id?: string | null, blockType: string } - | { __typename?: 'DateTimeBlock', id?: string | null, blockType: string } - | { __typename?: 'DecimalBlock', id?: string | null, blockType: string } - | { __typename?: 'DocumentChooserBlock', id?: string | null, blockType: string } - | { __typename?: 'EmailBlock', id?: string | null, blockType: string } - | { __typename?: 'EmbedBlock', id?: string | null, blockType: string } - | { __typename?: 'FactBoxBlock', id?: string | null, blockType: string } - | { __typename?: 'FeaturedBlock', id?: string | null, blockType: string } - | { __typename?: 'FloatBlock', id?: string | null, blockType: string } - | { __typename?: 'HorizontalRuleBlock', id?: string | null, blockType: string } - | { __typename?: 'ImageBlock', id?: string | null, blockType: string } - | { __typename?: 'ImageChooserBlock', id?: string | null, blockType: string } - | { __typename?: 'ImageSliderBlock', id?: string | null, blockType: string } - | { __typename?: 'ImageSliderItemBlock', id?: string | null, blockType: string } - | { __typename?: 'ImageWithTextBlock', id?: string | null, blockType: string } - | { __typename?: 'IntegerBlock', id?: string | null, blockType: string } - | { __typename?: 'ListBlock', id?: string | null, blockType: string } - | { __typename?: 'OpeningHoursRangeBlock', id?: string | null, blockType: string } +export type OpeningHoursSetFragment = { name: string, effectiveFrom: string, effectiveTo: string | null, announcement: string | null, items: Array<{ id: string | null, function: string, week: Array< + | { __typename: 'AccordionBlock' } + | { __typename: 'BlockQuoteBlock' } + | { __typename: 'BooleanBlock' } + | { __typename: 'CharBlock' } + | { __typename: 'ChoiceBlock' } + | { __typename: 'ContactEntityBlock' } + | { __typename: 'ContactListBlock' } + | { __typename: 'ContactSectionBlock' } + | { __typename: 'ContactSubsectionBlock' } + | { __typename: 'DateBlock' } + | { __typename: 'DateTimeBlock' } + | { __typename: 'DecimalBlock' } + | { __typename: 'DocumentChooserBlock' } + | { __typename: 'EmailBlock' } + | { __typename: 'EmbedBlock' } + | { __typename: 'FactBoxBlock' } + | { __typename: 'FeaturedBlock' } + | { __typename: 'FloatBlock' } + | { __typename: 'HorizontalRuleBlock' } + | { __typename: 'ImageBlock' } + | { __typename: 'ImageChooserBlock' } + | { __typename: 'ImageSliderBlock' } + | { __typename: 'ImageSliderItemBlock' } + | { __typename: 'ImageWithTextBlock' } + | { __typename: 'IntegerBlock' } + | { __typename: 'ListBlock' } + | { __typename: 'OpeningHoursRangeBlock' } | ( - { __typename?: 'OpeningHoursWeekBlock', id?: string | null, blockType: string } + { __typename: 'OpeningHoursWeekBlock' } & { ' $fragmentRefs'?: { 'OpeningHoursWeekBlockFragment': OpeningHoursWeekBlockFragment } } ) - | { __typename?: 'PageChooserBlock', id?: string | null, blockType: string } - | { __typename?: 'PageSectionBlock', id?: string | null, blockType: string } - | { __typename?: 'RawHTMLBlock', id?: string | null, blockType: string } - | { __typename?: 'RegexBlock', id?: string | null, blockType: string } - | { __typename?: 'RichTextBlock', id?: string | null, blockType: string } - | { __typename?: 'SnippetChooserBlock', id?: string | null, blockType: string } - | { __typename?: 'SponsorBlock', id?: string | null, blockType: string } - | { __typename?: 'StaticBlock', id?: string | null, blockType: string } - | { __typename?: 'StreamBlock', id?: string | null, blockType: string } - | { __typename?: 'StreamFieldBlock', id?: string | null, blockType: string } - | { __typename?: 'StructBlock', id?: string | null, blockType: string } - | { __typename?: 'TextBlock', id?: string | null, blockType: string } - | { __typename?: 'TimeBlock', id?: string | null, blockType: string } - | { __typename?: 'URLBlock', id?: string | null, blockType: string } - | null> | null } | null> | null } & { ' $fragmentName'?: 'OpeningHoursSetFragmentFragment' }; + | { __typename: 'PageChooserBlock' } + | { __typename: 'PageSectionBlock' } + | { __typename: 'RawHTMLBlock' } + | { __typename: 'RegexBlock' } + | { __typename: 'RichTextBlock' } + | { __typename: 'SnippetChooserBlock' } + | { __typename: 'SponsorBlock' } + | { __typename: 'StaticBlock' } + | { __typename: 'StreamBlock' } + | { __typename: 'StreamFieldBlock' } + | { __typename: 'StructBlock' } + | { __typename: 'TextBlock' } + | { __typename: 'TimeBlock' } + | { __typename: 'URLBlock' } + | null> | null } | null> | null } & { ' $fragmentName'?: 'OpeningHoursSetFragment' }; -export type OpeningHoursRangeBlockFragment = { __typename?: 'OpeningHoursRangeBlock', timeFrom?: string | null, timeTo?: string | null, custom?: string | null } & { ' $fragmentName'?: 'OpeningHoursRangeBlockFragment' }; +export type OpeningHoursRangeBlockFragment = { timeFrom: string | null, timeTo: string | null, custom: string | null } & { ' $fragmentName'?: 'OpeningHoursRangeBlockFragment' }; -export type OpeningHoursWeekBlockFragment = { __typename?: 'OpeningHoursWeekBlock', monday?: - | { __typename?: 'AccordionBlock' } - | { __typename?: 'BlockQuoteBlock' } - | { __typename?: 'BooleanBlock' } - | { __typename?: 'CharBlock' } - | { __typename?: 'ChoiceBlock' } - | { __typename?: 'ContactEntityBlock' } - | { __typename?: 'ContactListBlock' } - | { __typename?: 'ContactSectionBlock' } - | { __typename?: 'ContactSubsectionBlock' } - | { __typename?: 'DateBlock' } - | { __typename?: 'DateTimeBlock' } - | { __typename?: 'DecimalBlock' } - | { __typename?: 'DocumentChooserBlock' } - | { __typename?: 'EmailBlock' } - | { __typename?: 'EmbedBlock' } - | { __typename?: 'FactBoxBlock' } - | { __typename?: 'FeaturedBlock' } - | { __typename?: 'FloatBlock' } - | { __typename?: 'HorizontalRuleBlock' } - | { __typename?: 'ImageBlock' } - | { __typename?: 'ImageChooserBlock' } - | { __typename?: 'ImageSliderBlock' } - | { __typename?: 'ImageSliderItemBlock' } - | { __typename?: 'ImageWithTextBlock' } - | { __typename?: 'IntegerBlock' } - | { __typename?: 'ListBlock' } - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } - ) - | { __typename?: 'OpeningHoursWeekBlock' } - | { __typename?: 'PageChooserBlock' } - | { __typename?: 'PageSectionBlock' } - | { __typename?: 'RawHTMLBlock' } - | { __typename?: 'RegexBlock' } - | { __typename?: 'RichTextBlock' } - | { __typename?: 'SnippetChooserBlock' } - | { __typename?: 'SponsorBlock' } - | { __typename?: 'StaticBlock' } - | { __typename?: 'StreamBlock' } - | { __typename?: 'StreamFieldBlock' } - | { __typename?: 'StructBlock' } - | { __typename?: 'TextBlock' } - | { __typename?: 'TimeBlock' } - | { __typename?: 'URLBlock' } - | null, tuesday?: - | { __typename?: 'AccordionBlock' } - | { __typename?: 'BlockQuoteBlock' } - | { __typename?: 'BooleanBlock' } - | { __typename?: 'CharBlock' } - | { __typename?: 'ChoiceBlock' } - | { __typename?: 'ContactEntityBlock' } - | { __typename?: 'ContactListBlock' } - | { __typename?: 'ContactSectionBlock' } - | { __typename?: 'ContactSubsectionBlock' } - | { __typename?: 'DateBlock' } - | { __typename?: 'DateTimeBlock' } - | { __typename?: 'DecimalBlock' } - | { __typename?: 'DocumentChooserBlock' } - | { __typename?: 'EmailBlock' } - | { __typename?: 'EmbedBlock' } - | { __typename?: 'FactBoxBlock' } - | { __typename?: 'FeaturedBlock' } - | { __typename?: 'FloatBlock' } - | { __typename?: 'HorizontalRuleBlock' } - | { __typename?: 'ImageBlock' } - | { __typename?: 'ImageChooserBlock' } - | { __typename?: 'ImageSliderBlock' } - | { __typename?: 'ImageSliderItemBlock' } - | { __typename?: 'ImageWithTextBlock' } - | { __typename?: 'IntegerBlock' } - | { __typename?: 'ListBlock' } - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } - ) - | { __typename?: 'OpeningHoursWeekBlock' } - | { __typename?: 'PageChooserBlock' } - | { __typename?: 'PageSectionBlock' } - | { __typename?: 'RawHTMLBlock' } - | { __typename?: 'RegexBlock' } - | { __typename?: 'RichTextBlock' } - | { __typename?: 'SnippetChooserBlock' } - | { __typename?: 'SponsorBlock' } - | { __typename?: 'StaticBlock' } - | { __typename?: 'StreamBlock' } - | { __typename?: 'StreamFieldBlock' } - | { __typename?: 'StructBlock' } - | { __typename?: 'TextBlock' } - | { __typename?: 'TimeBlock' } - | { __typename?: 'URLBlock' } - | null, wednesday?: - | { __typename?: 'AccordionBlock' } - | { __typename?: 'BlockQuoteBlock' } - | { __typename?: 'BooleanBlock' } - | { __typename?: 'CharBlock' } - | { __typename?: 'ChoiceBlock' } - | { __typename?: 'ContactEntityBlock' } - | { __typename?: 'ContactListBlock' } - | { __typename?: 'ContactSectionBlock' } - | { __typename?: 'ContactSubsectionBlock' } - | { __typename?: 'DateBlock' } - | { __typename?: 'DateTimeBlock' } - | { __typename?: 'DecimalBlock' } - | { __typename?: 'DocumentChooserBlock' } - | { __typename?: 'EmailBlock' } - | { __typename?: 'EmbedBlock' } - | { __typename?: 'FactBoxBlock' } - | { __typename?: 'FeaturedBlock' } - | { __typename?: 'FloatBlock' } - | { __typename?: 'HorizontalRuleBlock' } - | { __typename?: 'ImageBlock' } - | { __typename?: 'ImageChooserBlock' } - | { __typename?: 'ImageSliderBlock' } - | { __typename?: 'ImageSliderItemBlock' } - | { __typename?: 'ImageWithTextBlock' } - | { __typename?: 'IntegerBlock' } - | { __typename?: 'ListBlock' } - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } - ) - | { __typename?: 'OpeningHoursWeekBlock' } - | { __typename?: 'PageChooserBlock' } - | { __typename?: 'PageSectionBlock' } - | { __typename?: 'RawHTMLBlock' } - | { __typename?: 'RegexBlock' } - | { __typename?: 'RichTextBlock' } - | { __typename?: 'SnippetChooserBlock' } - | { __typename?: 'SponsorBlock' } - | { __typename?: 'StaticBlock' } - | { __typename?: 'StreamBlock' } - | { __typename?: 'StreamFieldBlock' } - | { __typename?: 'StructBlock' } - | { __typename?: 'TextBlock' } - | { __typename?: 'TimeBlock' } - | { __typename?: 'URLBlock' } - | null, thursday?: - | { __typename?: 'AccordionBlock' } - | { __typename?: 'BlockQuoteBlock' } - | { __typename?: 'BooleanBlock' } - | { __typename?: 'CharBlock' } - | { __typename?: 'ChoiceBlock' } - | { __typename?: 'ContactEntityBlock' } - | { __typename?: 'ContactListBlock' } - | { __typename?: 'ContactSectionBlock' } - | { __typename?: 'ContactSubsectionBlock' } - | { __typename?: 'DateBlock' } - | { __typename?: 'DateTimeBlock' } - | { __typename?: 'DecimalBlock' } - | { __typename?: 'DocumentChooserBlock' } - | { __typename?: 'EmailBlock' } - | { __typename?: 'EmbedBlock' } - | { __typename?: 'FactBoxBlock' } - | { __typename?: 'FeaturedBlock' } - | { __typename?: 'FloatBlock' } - | { __typename?: 'HorizontalRuleBlock' } - | { __typename?: 'ImageBlock' } - | { __typename?: 'ImageChooserBlock' } - | { __typename?: 'ImageSliderBlock' } - | { __typename?: 'ImageSliderItemBlock' } - | { __typename?: 'ImageWithTextBlock' } - | { __typename?: 'IntegerBlock' } - | { __typename?: 'ListBlock' } - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } - ) - | { __typename?: 'OpeningHoursWeekBlock' } - | { __typename?: 'PageChooserBlock' } - | { __typename?: 'PageSectionBlock' } - | { __typename?: 'RawHTMLBlock' } - | { __typename?: 'RegexBlock' } - | { __typename?: 'RichTextBlock' } - | { __typename?: 'SnippetChooserBlock' } - | { __typename?: 'SponsorBlock' } - | { __typename?: 'StaticBlock' } - | { __typename?: 'StreamBlock' } - | { __typename?: 'StreamFieldBlock' } - | { __typename?: 'StructBlock' } - | { __typename?: 'TextBlock' } - | { __typename?: 'TimeBlock' } - | { __typename?: 'URLBlock' } - | null, friday?: - | { __typename?: 'AccordionBlock' } - | { __typename?: 'BlockQuoteBlock' } - | { __typename?: 'BooleanBlock' } - | { __typename?: 'CharBlock' } - | { __typename?: 'ChoiceBlock' } - | { __typename?: 'ContactEntityBlock' } - | { __typename?: 'ContactListBlock' } - | { __typename?: 'ContactSectionBlock' } - | { __typename?: 'ContactSubsectionBlock' } - | { __typename?: 'DateBlock' } - | { __typename?: 'DateTimeBlock' } - | { __typename?: 'DecimalBlock' } - | { __typename?: 'DocumentChooserBlock' } - | { __typename?: 'EmailBlock' } - | { __typename?: 'EmbedBlock' } - | { __typename?: 'FactBoxBlock' } - | { __typename?: 'FeaturedBlock' } - | { __typename?: 'FloatBlock' } - | { __typename?: 'HorizontalRuleBlock' } - | { __typename?: 'ImageBlock' } - | { __typename?: 'ImageChooserBlock' } - | { __typename?: 'ImageSliderBlock' } - | { __typename?: 'ImageSliderItemBlock' } - | { __typename?: 'ImageWithTextBlock' } - | { __typename?: 'IntegerBlock' } - | { __typename?: 'ListBlock' } - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } - ) - | { __typename?: 'OpeningHoursWeekBlock' } - | { __typename?: 'PageChooserBlock' } - | { __typename?: 'PageSectionBlock' } - | { __typename?: 'RawHTMLBlock' } - | { __typename?: 'RegexBlock' } - | { __typename?: 'RichTextBlock' } - | { __typename?: 'SnippetChooserBlock' } - | { __typename?: 'SponsorBlock' } - | { __typename?: 'StaticBlock' } - | { __typename?: 'StreamBlock' } - | { __typename?: 'StreamFieldBlock' } - | { __typename?: 'StructBlock' } - | { __typename?: 'TextBlock' } - | { __typename?: 'TimeBlock' } - | { __typename?: 'URLBlock' } - | null, saturday?: - | { __typename?: 'AccordionBlock' } - | { __typename?: 'BlockQuoteBlock' } - | { __typename?: 'BooleanBlock' } - | { __typename?: 'CharBlock' } - | { __typename?: 'ChoiceBlock' } - | { __typename?: 'ContactEntityBlock' } - | { __typename?: 'ContactListBlock' } - | { __typename?: 'ContactSectionBlock' } - | { __typename?: 'ContactSubsectionBlock' } - | { __typename?: 'DateBlock' } - | { __typename?: 'DateTimeBlock' } - | { __typename?: 'DecimalBlock' } - | { __typename?: 'DocumentChooserBlock' } - | { __typename?: 'EmailBlock' } - | { __typename?: 'EmbedBlock' } - | { __typename?: 'FactBoxBlock' } - | { __typename?: 'FeaturedBlock' } - | { __typename?: 'FloatBlock' } - | { __typename?: 'HorizontalRuleBlock' } - | { __typename?: 'ImageBlock' } - | { __typename?: 'ImageChooserBlock' } - | { __typename?: 'ImageSliderBlock' } - | { __typename?: 'ImageSliderItemBlock' } - | { __typename?: 'ImageWithTextBlock' } - | { __typename?: 'IntegerBlock' } - | { __typename?: 'ListBlock' } - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } - ) - | { __typename?: 'OpeningHoursWeekBlock' } - | { __typename?: 'PageChooserBlock' } - | { __typename?: 'PageSectionBlock' } - | { __typename?: 'RawHTMLBlock' } - | { __typename?: 'RegexBlock' } - | { __typename?: 'RichTextBlock' } - | { __typename?: 'SnippetChooserBlock' } - | { __typename?: 'SponsorBlock' } - | { __typename?: 'StaticBlock' } - | { __typename?: 'StreamBlock' } - | { __typename?: 'StreamFieldBlock' } - | { __typename?: 'StructBlock' } - | { __typename?: 'TextBlock' } - | { __typename?: 'TimeBlock' } - | { __typename?: 'URLBlock' } - | null, sunday?: - | { __typename?: 'AccordionBlock' } - | { __typename?: 'BlockQuoteBlock' } - | { __typename?: 'BooleanBlock' } - | { __typename?: 'CharBlock' } - | { __typename?: 'ChoiceBlock' } - | { __typename?: 'ContactEntityBlock' } - | { __typename?: 'ContactListBlock' } - | { __typename?: 'ContactSectionBlock' } - | { __typename?: 'ContactSubsectionBlock' } - | { __typename?: 'DateBlock' } - | { __typename?: 'DateTimeBlock' } - | { __typename?: 'DecimalBlock' } - | { __typename?: 'DocumentChooserBlock' } - | { __typename?: 'EmailBlock' } - | { __typename?: 'EmbedBlock' } - | { __typename?: 'FactBoxBlock' } - | { __typename?: 'FeaturedBlock' } - | { __typename?: 'FloatBlock' } - | { __typename?: 'HorizontalRuleBlock' } - | { __typename?: 'ImageBlock' } - | { __typename?: 'ImageChooserBlock' } - | { __typename?: 'ImageSliderBlock' } - | { __typename?: 'ImageSliderItemBlock' } - | { __typename?: 'ImageWithTextBlock' } - | { __typename?: 'IntegerBlock' } - | { __typename?: 'ListBlock' } - | ( - { __typename?: 'OpeningHoursRangeBlock' } - & { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } - ) - | { __typename?: 'OpeningHoursWeekBlock' } - | { __typename?: 'PageChooserBlock' } - | { __typename?: 'PageSectionBlock' } - | { __typename?: 'RawHTMLBlock' } - | { __typename?: 'RegexBlock' } - | { __typename?: 'RichTextBlock' } - | { __typename?: 'SnippetChooserBlock' } - | { __typename?: 'SponsorBlock' } - | { __typename?: 'StaticBlock' } - | { __typename?: 'StreamBlock' } - | { __typename?: 'StreamFieldBlock' } - | { __typename?: 'StructBlock' } - | { __typename?: 'TextBlock' } - | { __typename?: 'TimeBlock' } - | { __typename?: 'URLBlock' } +export type OpeningHoursWeekBlockFragment = { monday: + | { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } + | Record + | null, tuesday: + | { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } + | Record + | null, wednesday: + | { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } + | Record + | null, thursday: + | { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } + | Record + | null, friday: + | { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } + | Record + | null, saturday: + | { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } + | Record + | null, sunday: + | { ' $fragmentRefs'?: { 'OpeningHoursRangeBlockFragment': OpeningHoursRangeBlockFragment } } + | Record | null } & { ' $fragmentName'?: 'OpeningHoursWeekBlockFragment' }; +export const RichTextBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}}]} as unknown as DocumentNode; export const ImageFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}}]} as unknown as DocumentNode; +export const ImageWithTextBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}}]} as unknown as DocumentNode; +export const ImageSliderItemFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}}]} as unknown as DocumentNode; +export const ImageSliderBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]} as unknown as DocumentNode; +export const HorizontalRuleBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}}]} as unknown as DocumentNode; +export const FeaturedBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}}]} as unknown as DocumentNode; export const ContactEntityFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}}]} as unknown as DocumentNode; -export const LeafBlocksFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]} as unknown as DocumentNode; -export const OneLevelOfBlocksFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}}]} as unknown as DocumentNode; -export const BlocksFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GenericFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Generic"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GenericPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"urlPath"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode; -export const AssociationIndexFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AssociationIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode; -export const AssociationFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Association"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}}]}},{"kind":"Field","name":{"kind":"Name","value":"associationType"}},{"kind":"Field","name":{"kind":"Name","value":"websiteUrl"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode; -export const ContactIndexFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode; -export const VenueIndexFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"VenueIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode; -export const VenueFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Venue"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"showAsBookable"}},{"kind":"Field","name":{"kind":"Name","value":"showInOverview"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"usedFor"}},{"kind":"Field","name":{"kind":"Name","value":"techSpecsUrl"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudio"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudioVideo"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityBar"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityLighting"}},{"kind":"Field","name":{"kind":"Name","value":"capacityLegal"}},{"kind":"Field","name":{"kind":"Name","value":"capacityStanding"}},{"kind":"Field","name":{"kind":"Name","value":"capacitySitting"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode; +export const ContactListBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]} as unknown as DocumentNode; +export const EmbedBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}}]} as unknown as DocumentNode; +export const FactBoxBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]} as unknown as DocumentNode; +export const LeafBlocksFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]} as unknown as DocumentNode; +export const AccordionBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}}]} as unknown as DocumentNode; +export const PageSectionBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}}]} as unknown as DocumentNode; +export const OneLevelOfBlocksFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}}]} as unknown as DocumentNode; +export const ContactSectionBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}}]} as unknown as DocumentNode; +export const ContactSubsectionBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}}]} as unknown as DocumentNode; +export const BlocksFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}}]} as unknown as DocumentNode; +export const GenericFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Generic"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GenericPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"urlPath"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const AssociationIndexFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AssociationIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const AssociationFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Association"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}}]}},{"kind":"Field","name":{"kind":"Name","value":"associationType"}},{"kind":"Field","name":{"kind":"Name","value":"websiteUrl"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const ContactIndexFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const VenueIndexFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"VenueIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const VenueFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Venue"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"showAsBookable"}},{"kind":"Field","name":{"kind":"Name","value":"showInOverview"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"usedFor"}},{"kind":"Field","name":{"kind":"Name","value":"techSpecsUrl"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudio"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudioVideo"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityBar"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityLighting"}},{"kind":"Field","name":{"kind":"Name","value":"capacityLegal"}},{"kind":"Field","name":{"kind":"Name","value":"capacityStanding"}},{"kind":"Field","name":{"kind":"Name","value":"capacitySitting"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const HomeFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Home"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HomePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HomePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]} as unknown as DocumentNode; -export const SponsorsPageFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SponsorsPage"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sponsors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"website"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode; -export const VenueRentalIndexFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"VenueRentalIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueRentalIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueRentalIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode; -export const EventFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Event"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"subtitle"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"facebookUrl"}},{"kind":"Field","name":{"kind":"Name","value":"ticketUrl"}},{"kind":"Field","name":{"kind":"Name","value":"free"}},{"kind":"Field","name":{"kind":"Name","value":"priceRegular"}},{"kind":"Field","name":{"kind":"Name","value":"priceMember"}},{"kind":"Field","name":{"kind":"Name","value":"priceStudent"}},{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"occurrences"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOccurrence"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"venue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueCustom"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"organizers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"association"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}}]} as unknown as DocumentNode; +export const SponsorFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Sponsor"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"website"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}}]} as unknown as DocumentNode; +export const SponsorsPageFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SponsorsPage"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sponsors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Sponsor"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Sponsor"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"website"}}]}}]} as unknown as DocumentNode; +export const VenueRentalIndexFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"VenueRentalIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueRentalIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueRentalIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const ContactEntityBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntityBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]} as unknown as DocumentNode; +export const EventCategoryFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventCategory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"showInFilters"}}]}}]} as unknown as DocumentNode; +export const EventOrganizerFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventOrganizer"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"association"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]} as unknown as DocumentNode; +export const EventFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Event"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"subtitle"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"facebookUrl"}},{"kind":"Field","name":{"kind":"Name","value":"ticketUrl"}},{"kind":"Field","name":{"kind":"Name","value":"free"}},{"kind":"Field","name":{"kind":"Name","value":"priceRegular"}},{"kind":"Field","name":{"kind":"Name","value":"priceMember"}},{"kind":"Field","name":{"kind":"Name","value":"priceStudent"}},{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventCategory"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"occurrences"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOccurrence"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"venue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueCustom"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"organizers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventOrganizer"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventCategory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"showInFilters"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventOrganizer"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"association"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]} as unknown as DocumentNode; export const EventIndexFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}}]} as unknown as DocumentNode; -export const NewsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode; +export const NewsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const NewsIndexFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NewsIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}}]}}]} as unknown as DocumentNode; export const OpeningHoursRangeBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursRangeBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"timeFrom"}},{"kind":"Field","name":{"kind":"Name","value":"timeTo"}},{"kind":"Field","name":{"kind":"Name","value":"custom"}}]}}]} as unknown as DocumentNode; export const OpeningHoursWeekBlockFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursWeekBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"monday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tuesday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"wednesday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"thursday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"friday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"saturday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"sunday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursRangeBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"timeFrom"}},{"kind":"Field","name":{"kind":"Name","value":"timeTo"}},{"kind":"Field","name":{"kind":"Name","value":"custom"}}]}}]} as unknown as DocumentNode; -export const OpeningHoursSetFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursSetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursSet"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"effectiveFrom"}},{"kind":"Field","name":{"kind":"Name","value":"effectiveTo"}},{"kind":"Field","name":{"kind":"Name","value":"announcement"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"function"}},{"kind":"Field","name":{"kind":"Name","value":"week"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursRangeBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"timeFrom"}},{"kind":"Field","name":{"kind":"Name","value":"timeTo"}},{"kind":"Field","name":{"kind":"Name","value":"custom"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursWeekBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"monday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tuesday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"wednesday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"thursday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"friday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"saturday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"sunday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GenericPageByUrlDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"genericPageByUrl"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"urlPath"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"page"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"generic.GenericPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"urlPath"},"value":{"kind":"Variable","name":{"kind":"Name","value":"urlPath"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GenericPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Generic"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Generic"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GenericPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"urlPath"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]} as unknown as DocumentNode; +export const OpeningHoursSetFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursSet"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursSet"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"effectiveFrom"}},{"kind":"Field","name":{"kind":"Name","value":"effectiveTo"}},{"kind":"Field","name":{"kind":"Name","value":"announcement"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"function"}},{"kind":"Field","name":{"kind":"Name","value":"week"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursRangeBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"timeFrom"}},{"kind":"Field","name":{"kind":"Name","value":"timeTo"}},{"kind":"Field","name":{"kind":"Name","value":"custom"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursWeekBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"monday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tuesday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"wednesday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"thursday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"friday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"saturday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"sunday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}}]}}]} as unknown as DocumentNode; +export const GenericPageByUrlDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"genericPageByUrl"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"urlPath"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"page"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"generic.GenericPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"urlPath"},"value":{"kind":"Variable","name":{"kind":"Name","value":"urlPath"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GenericPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Generic"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Generic"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GenericPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"urlPath"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]} as unknown as DocumentNode; export const AllGenericSlugsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"allGenericSlugs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"generic.GenericPage","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"urlPath"}}]}}]}}]} as unknown as DocumentNode; -export const NewsBySlugDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"newsBySlug"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"news"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"news.NewsPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"News"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]} as unknown as DocumentNode; +export const NewsBySlugDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"newsBySlug"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"news"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"news.NewsPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"News"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]} as unknown as DocumentNode; export const AllNewsSlugsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"allNewsSlugs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"news.NewsPage","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]} as unknown as DocumentNode; -export const EventBySlugDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"eventBySlug"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"event"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"events.EventPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Event"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Event"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"subtitle"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"facebookUrl"}},{"kind":"Field","name":{"kind":"Name","value":"ticketUrl"}},{"kind":"Field","name":{"kind":"Name","value":"free"}},{"kind":"Field","name":{"kind":"Name","value":"priceRegular"}},{"kind":"Field","name":{"kind":"Name","value":"priceMember"}},{"kind":"Field","name":{"kind":"Name","value":"priceStudent"}},{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"occurrences"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOccurrence"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"venue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueCustom"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"organizers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"association"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const EventBySlugDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"eventBySlug"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"event"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"events.EventPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Event"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventCategory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"showInFilters"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventOrganizer"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"association"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Event"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"subtitle"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"facebookUrl"}},{"kind":"Field","name":{"kind":"Name","value":"ticketUrl"}},{"kind":"Field","name":{"kind":"Name","value":"free"}},{"kind":"Field","name":{"kind":"Name","value":"priceRegular"}},{"kind":"Field","name":{"kind":"Name","value":"priceMember"}},{"kind":"Field","name":{"kind":"Name","value":"priceStudent"}},{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventCategory"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"occurrences"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOccurrence"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"venue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueCustom"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"organizers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventOrganizer"}}]}}]}}]}}]} as unknown as DocumentNode; export const AllEventSlugsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"allEventSlugs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"events.EventPage","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]} as unknown as DocumentNode; -export const AssociationBySlugDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"associationBySlug"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"association"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"associations.AssociationPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Association"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Association"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}}]}},{"kind":"Field","name":{"kind":"Name","value":"associationType"}},{"kind":"Field","name":{"kind":"Name","value":"websiteUrl"}}]}}]} as unknown as DocumentNode; +export const AssociationBySlugDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"associationBySlug"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"association"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"associations.AssociationPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Association"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Association"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}}]}},{"kind":"Field","name":{"kind":"Name","value":"associationType"}},{"kind":"Field","name":{"kind":"Name","value":"websiteUrl"}}]}}]} as unknown as DocumentNode; export const AllAssociationSlugsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"allAssociationSlugs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"associations.AssociationPage","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]} as unknown as DocumentNode; -export const AllAssociationsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"allAssociations"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"associationIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AssociationIndex"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"associations"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"associations.AssociationPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Association"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AssociationIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Association"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}}]}},{"kind":"Field","name":{"kind":"Name","value":"associationType"}},{"kind":"Field","name":{"kind":"Name","value":"websiteUrl"}}]}}]} as unknown as DocumentNode; -export const ContactsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"contacts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"contactIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactIndex"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}}]} as unknown as DocumentNode; -export const VenueBySlugDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"venueBySlug"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"venue"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"venues.VenuePage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Venue"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Venue"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"showAsBookable"}},{"kind":"Field","name":{"kind":"Name","value":"showInOverview"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"usedFor"}},{"kind":"Field","name":{"kind":"Name","value":"techSpecsUrl"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudio"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudioVideo"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityBar"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityLighting"}},{"kind":"Field","name":{"kind":"Name","value":"capacityLegal"}},{"kind":"Field","name":{"kind":"Name","value":"capacityStanding"}},{"kind":"Field","name":{"kind":"Name","value":"capacitySitting"}}]}}]} as unknown as DocumentNode; +export const AllAssociationsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"allAssociations"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"associationIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AssociationIndex"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"associations"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"associations.AssociationPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Association"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AssociationIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Association"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}}]}},{"kind":"Field","name":{"kind":"Name","value":"associationType"}},{"kind":"Field","name":{"kind":"Name","value":"websiteUrl"}}]}}]} as unknown as DocumentNode; +export const ContactsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"contacts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"contactIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactIndex"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}}]} as unknown as DocumentNode; +export const VenueBySlugDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"venueBySlug"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"venue"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"venues.VenuePage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Venue"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Venue"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"showAsBookable"}},{"kind":"Field","name":{"kind":"Name","value":"showInOverview"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"usedFor"}},{"kind":"Field","name":{"kind":"Name","value":"techSpecsUrl"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudio"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudioVideo"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityBar"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityLighting"}},{"kind":"Field","name":{"kind":"Name","value":"capacityLegal"}},{"kind":"Field","name":{"kind":"Name","value":"capacityStanding"}},{"kind":"Field","name":{"kind":"Name","value":"capacitySitting"}}]}}]} as unknown as DocumentNode; export const AllVenueSlugsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"allVenueSlugs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"venues.VenuePage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"100"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]} as unknown as DocumentNode; -export const VenueIndexDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"venueIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"venueIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"VenueIndex"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"venues"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"venues.VenuePage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"100"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Venue"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"VenueIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Venue"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"showAsBookable"}},{"kind":"Field","name":{"kind":"Name","value":"showInOverview"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"usedFor"}},{"kind":"Field","name":{"kind":"Name","value":"techSpecsUrl"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudio"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudioVideo"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityBar"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityLighting"}},{"kind":"Field","name":{"kind":"Name","value":"capacityLegal"}},{"kind":"Field","name":{"kind":"Name","value":"capacityStanding"}},{"kind":"Field","name":{"kind":"Name","value":"capacitySitting"}}]}}]} as unknown as DocumentNode; -export const HomeDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"home"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"events"},"name":{"kind":"Name","value":"eventIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"futureEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Event"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"home"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"home.HomePage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"urlPath"},"value":{"kind":"StringValue","value":"/home/","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HomePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Home"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"news"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"news.newsPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"StringValue","value":"-first_published_at","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"4"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"News"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Event"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"subtitle"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"facebookUrl"}},{"kind":"Field","name":{"kind":"Name","value":"ticketUrl"}},{"kind":"Field","name":{"kind":"Name","value":"free"}},{"kind":"Field","name":{"kind":"Name","value":"priceRegular"}},{"kind":"Field","name":{"kind":"Name","value":"priceMember"}},{"kind":"Field","name":{"kind":"Name","value":"priceStudent"}},{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"occurrences"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOccurrence"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"venue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueCustom"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"organizers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"association"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Home"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HomePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HomePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]} as unknown as DocumentNode; +export const VenueIndexDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"venueIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"venueIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"VenueIndex"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"venues"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"venues.VenuePage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"100"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Venue"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"VenueIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Venue"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"showAsBookable"}},{"kind":"Field","name":{"kind":"Name","value":"showInOverview"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"usedFor"}},{"kind":"Field","name":{"kind":"Name","value":"techSpecsUrl"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudio"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudioVideo"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityBar"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityLighting"}},{"kind":"Field","name":{"kind":"Name","value":"capacityLegal"}},{"kind":"Field","name":{"kind":"Name","value":"capacityStanding"}},{"kind":"Field","name":{"kind":"Name","value":"capacitySitting"}}]}}]} as unknown as DocumentNode; +export const HomeDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"home"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"events"},"name":{"kind":"Name","value":"eventIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"futureEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Event"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"home"},"name":{"kind":"Name","value":"page"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"home.HomePage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"urlPath"},"value":{"kind":"StringValue","value":"/home/","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HomePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Home"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"news"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"news.newsPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"StringValue","value":"-first_published_at","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"4"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"News"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventCategory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"showInFilters"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventOrganizer"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"association"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Event"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"subtitle"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"facebookUrl"}},{"kind":"Field","name":{"kind":"Name","value":"ticketUrl"}},{"kind":"Field","name":{"kind":"Name","value":"free"}},{"kind":"Field","name":{"kind":"Name","value":"priceRegular"}},{"kind":"Field","name":{"kind":"Name","value":"priceMember"}},{"kind":"Field","name":{"kind":"Name","value":"priceStudent"}},{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventCategory"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"occurrences"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOccurrence"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"venue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueCustom"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"organizers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventOrganizer"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Home"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HomePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HomePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]} as unknown as DocumentNode; export const SearchDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"search"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"query"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"results"},"name":{"kind":"Name","value":"search"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"query"},"value":{"kind":"Variable","name":{"kind":"Name","value":"query"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GenericPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"associationType"}}]}}]}}]}}]} as unknown as DocumentNode; -export const SponsorsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"sponsors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"page"},"name":{"kind":"Name","value":"sponsorsPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"SponsorsPage"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SponsorsPage"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sponsors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"website"}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const VenueRentalIndexDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"venueRentalIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"venueRentalIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueRentalIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"VenueRentalIndex"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"venues"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"venues.VenuePage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"100"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Venue"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"VenueRentalIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueRentalIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueRentalIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Venue"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"showAsBookable"}},{"kind":"Field","name":{"kind":"Name","value":"showInOverview"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"usedFor"}},{"kind":"Field","name":{"kind":"Name","value":"techSpecsUrl"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudio"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudioVideo"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityBar"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityLighting"}},{"kind":"Field","name":{"kind":"Name","value":"capacityLegal"}},{"kind":"Field","name":{"kind":"Name","value":"capacityStanding"}},{"kind":"Field","name":{"kind":"Name","value":"capacitySitting"}}]}}]} as unknown as DocumentNode; +export const SponsorsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"sponsors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"page"},"name":{"kind":"Name","value":"sponsorsPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"SponsorsPage"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Sponsor"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"logo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"website"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SponsorsPage"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sponsors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SponsorBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Sponsor"}}]}}]}}]}}]}}]} as unknown as DocumentNode; +export const VenueRentalIndexDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"venueRentalIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"venueRentalIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueRentalIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"VenueRentalIndex"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"venues"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"venues.VenuePage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"100"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Venue"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"VenueRentalIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueRentalIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenueRentalIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Venue"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"showAsBookable"}},{"kind":"Field","name":{"kind":"Name","value":"showInOverview"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"usedFor"}},{"kind":"Field","name":{"kind":"Name","value":"techSpecsUrl"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudio"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityAudioVideo"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityBar"}},{"kind":"Field","name":{"kind":"Name","value":"capabilityLighting"}},{"kind":"Field","name":{"kind":"Name","value":"capacityLegal"}},{"kind":"Field","name":{"kind":"Name","value":"capacityStanding"}},{"kind":"Field","name":{"kind":"Name","value":"capacitySitting"}}]}}]} as unknown as DocumentNode; export const EventIndexMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"eventIndexMetadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"eventIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventIndex"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}}]} as unknown as DocumentNode; -export const FutureEventsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"futureEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"eventIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventIndex"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"events"},"name":{"kind":"Name","value":"eventIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"futureEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Event"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"eventCategories"},"name":{"kind":"Name","value":"eventCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"showInFilters"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"eventOrganizers"},"name":{"kind":"Name","value":"eventOrganizers"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"venues"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"venues.VenuePage","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Event"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"subtitle"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"facebookUrl"}},{"kind":"Field","name":{"kind":"Name","value":"ticketUrl"}},{"kind":"Field","name":{"kind":"Name","value":"free"}},{"kind":"Field","name":{"kind":"Name","value":"priceRegular"}},{"kind":"Field","name":{"kind":"Name","value":"priceMember"}},{"kind":"Field","name":{"kind":"Name","value":"priceStudent"}},{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"occurrences"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOccurrence"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"venue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueCustom"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"organizers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"association"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const NewsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"news"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"newsIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"NewsIndex"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"news"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"news.NewsPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"StringValue","value":"-first_published_at","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"News"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NewsIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]} as unknown as DocumentNode; -export const OpeningHoursSetsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"openingHoursSets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openingHoursSets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursSetFragment"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursRangeBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"timeFrom"}},{"kind":"Field","name":{"kind":"Name","value":"timeTo"}},{"kind":"Field","name":{"kind":"Name","value":"custom"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursWeekBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"monday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tuesday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"wednesday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"thursday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"friday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"saturday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"sunday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursSetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursSet"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"effectiveFrom"}},{"kind":"Field","name":{"kind":"Name","value":"effectiveTo"}},{"kind":"Field","name":{"kind":"Name","value":"announcement"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"function"}},{"kind":"Field","name":{"kind":"Name","value":"week"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}}]}}]}}]}}]}}]} as unknown as DocumentNode; \ No newline at end of file +export const FutureEventsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"futureEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"eventIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventIndex"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"events"},"name":{"kind":"Name","value":"eventIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"futureEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Event"}}]}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"eventCategories"},"name":{"kind":"Name","value":"eventCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventCategory"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"eventOrganizers"},"name":{"kind":"Name","value":"eventOrganizers"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventOrganizer"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"venues"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"venues.VenuePage","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"VenuePage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventCategory"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"showInFilters"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventOrganizer"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"association"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AssociationPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EventIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Event"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"subtitle"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pig"}},{"kind":"Field","name":{"kind":"Name","value":"facebookUrl"}},{"kind":"Field","name":{"kind":"Name","value":"ticketUrl"}},{"kind":"Field","name":{"kind":"Name","value":"free"}},{"kind":"Field","name":{"kind":"Name","value":"priceRegular"}},{"kind":"Field","name":{"kind":"Name","value":"priceMember"}},{"kind":"Field","name":{"kind":"Name","value":"priceStudent"}},{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventCategory"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"occurrences"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOccurrence"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"venue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueCustom"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"organizers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventOrganizer"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EventOrganizer"}}]}}]}}]}}]} as unknown as DocumentNode; +export const NewsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"news"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"index"},"name":{"kind":"Name","value":"newsIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"NewsIndex"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"news"},"name":{"kind":"Name","value":"pages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contentType"},"value":{"kind":"StringValue","value":"news.NewsPage","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"StringValue","value":"-first_published_at","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1000"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"News"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Image"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CustomImage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"width"}},{"kind":"Field","name":{"kind":"Name","value":"height"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}},{"kind":"Field","name":{"kind":"Name","value":"attribution"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"RichTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageWithTextBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"imageFormat"}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderItem"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"text"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ImageSliderBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderItemBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderItem"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HorizontalRuleBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"color"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FeaturedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","alias":{"kind":"Name","value":"featuredBlockText"},"name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"linkText"}},{"kind":"Field","name":{"kind":"Name","value":"imagePosition"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"featuredPage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentType"}},{"kind":"Field","name":{"kind":"Name","value":"pageType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EventPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"featuredImageOverride"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactEntity"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntity"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"contactType"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"phoneNumber"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactListBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactEntityBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contactEntity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactEntity"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"EmbedBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"embed"}},{"kind":"Field","name":{"kind":"Name","value":"rawEmbed"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"FactBoxBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","alias":{"kind":"Name","value":"factBoxBody"},"name":{"kind":"Name","value":"body"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"LeafBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}},{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"RichTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageWithTextBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageWithTextBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ImageSliderBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ImageSliderBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"HorizontalRuleBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"HorizontalRuleBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FeaturedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FeaturedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactListBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactListBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EmbedBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"EmbedBlock"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FactBoxBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"FactBoxBlock"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccordionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"heading"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PageSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundColor"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OneLevelOfBlocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"LeafBlocks"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContactSubsectionBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"blockType"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"Blocks"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StreamFieldInterface"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccordionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccordionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PageSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PageSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContactSubsectionBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContactSubsectionBlock"}},{"kind":"Field","name":{"kind":"Name","value":"blocks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NewsIndex"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsIndex"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"News"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewsPage"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"seoTitle"}},{"kind":"Field","name":{"kind":"Name","value":"searchDescription"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}},{"kind":"Field","name":{"kind":"Name","value":"featuredImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Image"}}]}},{"kind":"Field","name":{"kind":"Name","value":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"Blocks"}}]}}]}}]} as unknown as DocumentNode; +export const OpeningHoursSetsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"openingHoursSets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openingHoursSets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursSet"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursRangeBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"timeFrom"}},{"kind":"Field","name":{"kind":"Name","value":"timeTo"}},{"kind":"Field","name":{"kind":"Name","value":"custom"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursWeekBlock"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"monday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tuesday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"wednesday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"thursday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"friday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"saturday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"sunday"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursRangeBlock"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"OpeningHoursSet"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursSet"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"effectiveFrom"}},{"kind":"Field","name":{"kind":"Name","value":"effectiveTo"}},{"kind":"Field","name":{"kind":"Name","value":"announcement"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"function"}},{"kind":"Field","name":{"kind":"Name","value":"week"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"__typename"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OpeningHoursWeekBlock"}}]}}]}}]}}]}}]} as unknown as DocumentNode; diff --git a/web/src/lib/common.ts b/web/src/lib/common.ts index 4afbb55..eb6d534 100644 --- a/web/src/lib/common.ts +++ b/web/src/lib/common.ts @@ -97,72 +97,28 @@ const LeafBlocksFragmentDefinition = graphql(` blockType field ... on RichTextBlock { - rawValue - value + ...RichTextBlock } ... on ImageWithTextBlock { - image { - ...Image - } - imageFormat - text + ...ImageWithTextBlock } ... on ImageSliderBlock { - images { - ... on ImageSliderItemBlock { - image { - ...Image - } - text - } - } + ...ImageSliderBlock } ... on HorizontalRuleBlock { - color + ...HorizontalRuleBlock } ... on FeaturedBlock { - title - featuredBlockText: text - linkText - imagePosition - backgroundColor - featuredPage { - contentType - pageType - url - ... on EventPage { - featuredImage { - ...Image - } - } - ... on NewsPage { - featuredImage { - ...Image - } - } - } - featuredImageOverride { - ...Image - } + ...FeaturedBlock } ... on ContactListBlock { - items { - blockType - ... on ContactEntityBlock { - contactEntity { - ...ContactEntity - } - } - } + ...ContactListBlock } ... on EmbedBlock { - url - embed - rawEmbed + ...EmbedBlock } ... on FactBoxBlock { - backgroundColor - factBoxBody: body + ...FactBoxBlock } } `); @@ -171,15 +127,13 @@ const OneLevelOfBlocksFragmentDefinition = graphql(` fragment OneLevelOfBlocks on StreamFieldInterface { ...LeafBlocks ... on AccordionBlock { - heading + ...AccordionBlock body { ...LeafBlocks } } ... on PageSectionBlock { - title - backgroundColor - icon + ...PageSectionBlock body { ...LeafBlocks } @@ -189,39 +143,35 @@ const OneLevelOfBlocksFragmentDefinition = graphql(` const BlockFragmentDefinition = graphql(` fragment Blocks on StreamFieldInterface { + ...OneLevelOfBlocks ... on AccordionBlock { - heading + ...AccordionBlock body { ...OneLevelOfBlocks } } ... on PageSectionBlock { - title - backgroundColor - icon + ...PageSectionBlock body { ...OneLevelOfBlocks } } ... on ContactSectionBlock { - title - text + ...ContactSectionBlock blocks { + ...OneLevelOfBlocks ... on ContactSubsectionBlock { - title - text + ...ContactSubsectionBlock blocks { ...OneLevelOfBlocks } } - ...OneLevelOfBlocks } } - ...OneLevelOfBlocks } `); -const ImageFragmentDefinition = graphql(` +export const ImageFragmentDefinition = graphql(` fragment Image on CustomImage { id url @@ -232,7 +182,7 @@ const ImageFragmentDefinition = graphql(` } `); -const ContactEntityFragmentDefinition = graphql(` +export const ContactEntityFragmentDefinition = graphql(` fragment ContactEntity on ContactEntity { id name diff --git a/web/src/lib/event.ts b/web/src/lib/event.ts index 92de890..ccf3ff7 100644 --- a/web/src/lib/event.ts +++ b/web/src/lib/event.ts @@ -8,21 +8,48 @@ import { parseISO, } from "date-fns"; import { toLocalTime, formatDate, compareDates } from "./date"; -import { graphql } from "@/gql"; -import { EventFragment, EventOccurrence } from "@/gql/graphql"; +import { graphql, unmaskFragment } from "@/gql"; +import { + type EventCategoryFragment, + type EventFragment, + type EventOrganizerFragment, +} from "@/gql/graphql"; import { PIG_NAMES, randomElement } from "@/lib/common"; -export type { - EventFragment, - EventCategory, - EventOccurrence, - EventOrganizer, -} from "@/gql/graphql"; +export type EventOccurrence = EventFragment["occurrences"][number]; +export type EventCategory = EventCategoryFragment; +export type EventOrganizer = EventOrganizerFragment; +export type { EventFragment }; export type SingularEvent = EventFragment & { occurrence: EventOccurrence; }; +export const EventCategoryFragmentDefinition = graphql(` + fragment EventCategory on EventCategory { + __typename + name + slug + pig + showInFilters + } +`); + +export const EventOrganizerFragmentDefinition = graphql(` + fragment EventOrganizer on EventOrganizer { + __typename + id + name + slug + externalUrl + association { + ... on AssociationPage { + url + } + } + } +`); + const EventFragmentDefinition = graphql(` fragment Event on EventPage { __typename @@ -48,9 +75,7 @@ const EventFragmentDefinition = graphql(` priceStudent categories { ... on EventCategory { - name - slug - pig + ...EventCategory } } occurrences(limit: 5000) { @@ -72,15 +97,7 @@ const EventFragmentDefinition = graphql(` } organizers { ... on EventOrganizer { - id - name - slug - externalUrl - association { - ... on AssociationPage { - url - } - } + ...EventOrganizer } } } @@ -125,16 +142,12 @@ export const eventsOverviewQuery = graphql(` } eventCategories: eventCategories(limit: 5000) { ... on EventCategory { - name - slug - showInFilters + ...EventCategory } } eventOrganizers: eventOrganizers(limit: 5000) { ... on EventOrganizer { - id - name - slug + ...EventOrganizer } } venues: pages(contentType: "venues.VenuePage") { @@ -270,7 +283,11 @@ export function getEventPig(event: EventFragment): string | null { return event.pig; } if (event.pig === "automatic") { - const categoryPigs = event.categories + const categories = unmaskFragment( + EventCategoryFragmentDefinition, + event.categories + ); + const categoryPigs = categories ?.map((category) => category.pig) .filter((pig) => PIG_NAMES.includes(pig)); const chosenPig = randomElement(categoryPigs ?? []); diff --git a/web/src/lib/openinghours.ts b/web/src/lib/openinghours.ts index c53b57e..6b880de 100644 --- a/web/src/lib/openinghours.ts +++ b/web/src/lib/openinghours.ts @@ -1,19 +1,18 @@ import { - startOfToday, - isAfter, - getISODay, - parseISO, - isSameDay, compareDesc, + getISODay, + isAfter, + isSameDay, + parseISO, + startOfToday, } from "date-fns"; -import { graphql } from "@/gql"; -import { - OpeningHoursRangeBlock, - OpeningHoursSet, - OpeningHoursWeekBlock, -} from "@/gql/graphql"; import { getClient } from "@/app/client"; +import { graphql, unmaskFragment } from "@/gql"; +import type { + OpeningHoursRangeBlockFragment as OpeningHoursRangeBlock, + OpeningHoursSetFragment as OpeningHoursSet, +} from "@/gql/graphql"; const MISSING_OPENING_HOURS = { name: "Ã…pningstider mangler", @@ -45,7 +44,7 @@ const WEEKDAYS_NORWEGIAN = [ const openingHoursQuery = graphql(` query openingHoursSets { openingHoursSets { - ...OpeningHoursSetFragment + ...OpeningHoursSet } } `); @@ -79,7 +78,7 @@ export async function getOpeningHours() { } // pick the set that msot recently took effect return validSets.sort((a, b) => - compareDesc(a.effectiveFrom, b.effectiveFrom) + compareDesc(a.effectiveFrom, b.effectiveFrom), )[0]; } @@ -93,7 +92,7 @@ type OpeningHoursGroup = { type OpeningHoursPerDay = Record; export function groupOpeningHours( - week: OpeningHoursPerDay + week: OpeningHoursPerDay, ): OpeningHoursGroup[] { const grouped: OpeningHoursGroup[] = []; let previous: string | null = null; @@ -132,7 +131,7 @@ export type PrettyOpeningHours = { }; function formatGroupedHours( - grouped: OpeningHoursGroup[] + grouped: OpeningHoursGroup[], ): PrettyOpeningHours[] { return grouped.map((group) => { const startDayIndex = WEEKDAYS.indexOf(group.days[0]); @@ -160,19 +159,26 @@ function formatGroupedHours( export function getOpeningHoursForFunction( openingHours: OpeningHoursSet, - name: string + name: string, ) { const item = openingHours.items?.find((x) => x?.function === name); if (!item || !Array.isArray(item?.week) || item?.week.length !== 1) { return; } - const week = item.week[0] as OpeningHoursWeekBlock; + const maskedWeek = item.week[0]; + if (maskedWeek?.__typename !== "OpeningHoursWeekBlock") { + return; + } + const week = unmaskFragment( + OpeningHoursWeekBlockFragmentDefinition, + maskedWeek, + ); return week; } export function getPrettyOpeningHoursForFunction( openingHours: OpeningHoursSet, - name: string + name: string, ) { const week = getOpeningHoursForFunction(openingHours, name); if (!week) { @@ -194,7 +200,7 @@ export function getPrettyOpeningHoursForFunction( export function getTodaysOpeningHoursForFunction( openingHours: OpeningHoursSet, - name: string + name: string, ): string { const week: any = getOpeningHoursForFunction(openingHours, name); if (!week) { @@ -213,7 +219,7 @@ export function getTodaysOpeningHoursForFunction( } const OpeningHoursSetFragmentDefinition = graphql(` - fragment OpeningHoursSetFragment on OpeningHoursSet { + fragment OpeningHoursSet on OpeningHoursSet { name effectiveFrom effectiveTo @@ -222,8 +228,7 @@ const OpeningHoursSetFragmentDefinition = graphql(` id function week { - id - blockType + __typename ... on OpeningHoursWeekBlock { ...OpeningHoursWeekBlock } @@ -240,7 +245,7 @@ const OpeningHoursRangeBlockFragmentDefinition = graphql(` } `); -const OpeningHoursWeekBlockFragmentDefinition = graphql(` +export const OpeningHoursWeekBlockFragmentDefinition = graphql(` fragment OpeningHoursWeekBlock on OpeningHoursWeekBlock { monday { ... on OpeningHoursRangeBlock {