3056 lines
284 KiB
TypeScript
3056 lines
284 KiB
TypeScript
/* eslint-disable */
|
|
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
export type Maybe<T> = T | null;
|
|
export type InputMaybe<T> = Maybe<T>;
|
|
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
|
|
export type Incremental<T> = 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 AssociationIndex = PageInterface & {
|
|
__typename?: 'AssociationIndex';
|
|
aliasOf?: Maybe<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
body?: Maybe<Array<Maybe<StreamFieldInterface>>>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
lead?: Maybe<Scalars['RichText']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
};
|
|
|
|
|
|
export type AssociationIndexAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type AssociationIndexChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type AssociationIndexDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type AssociationIndexNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type AssociationIndexPreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type AssociationIndexSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type AssociationPage = PageInterface & {
|
|
__typename?: 'AssociationPage';
|
|
aliasOf?: Maybe<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationType?: Maybe<Scalars['String']['output']>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
body?: Maybe<Array<Maybe<StreamFieldInterface>>>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
logo?: Maybe<CustomImage>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
};
|
|
|
|
|
|
export type AssociationPageAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type AssociationPageChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type AssociationPageDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type AssociationPageNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type AssociationPagePreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type AssociationPageSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type BlockQuoteBlock = StreamFieldInterface & {
|
|
__typename?: 'BlockQuoteBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type BooleanBlock = StreamFieldInterface & {
|
|
__typename?: 'BooleanBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['Boolean']['output'];
|
|
};
|
|
|
|
export type CharBlock = StreamFieldInterface & {
|
|
__typename?: 'CharBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type ChoiceBlock = StreamFieldInterface & {
|
|
__typename?: 'ChoiceBlock';
|
|
blockType: Scalars['String']['output'];
|
|
choices: Array<ChoiceOption>;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
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<Maybe<CollectionObjectType>>;
|
|
depth: Scalars['Int']['output'];
|
|
descendants: Array<Maybe<CollectionObjectType>>;
|
|
id: Scalars['ID']['output'];
|
|
name: Scalars['String']['output'];
|
|
numchild: Scalars['Int']['output'];
|
|
path: Scalars['String']['output'];
|
|
};
|
|
|
|
export type CustomImage = {
|
|
__typename?: 'CustomImage';
|
|
alt?: Maybe<Scalars['String']['output']>;
|
|
aspectRatio: Scalars['Float']['output'];
|
|
attribution?: Maybe<Scalars['String']['output']>;
|
|
collection: CollectionObjectType;
|
|
createdAt: Scalars['DateTime']['output'];
|
|
file: Scalars['String']['output'];
|
|
fileHash: Scalars['String']['output'];
|
|
fileSize?: Maybe<Scalars['Int']['output']>;
|
|
focalPointHeight?: Maybe<Scalars['Int']['output']>;
|
|
focalPointWidth?: Maybe<Scalars['Int']['output']>;
|
|
focalPointX?: Maybe<Scalars['Int']['output']>;
|
|
focalPointY?: Maybe<Scalars['Int']['output']>;
|
|
height: Scalars['Int']['output'];
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
isSvg: Scalars['Boolean']['output'];
|
|
rendition?: Maybe<Rendition>;
|
|
sizes: Scalars['String']['output'];
|
|
/** @deprecated Use the `url` attribute */
|
|
src: Scalars['String']['output'];
|
|
srcSet?: Maybe<Scalars['String']['output']>;
|
|
tags: Array<TagObjectType>;
|
|
title: Scalars['String']['output'];
|
|
url: Scalars['String']['output'];
|
|
width: Scalars['Int']['output'];
|
|
};
|
|
|
|
|
|
export type CustomImageRenditionArgs = {
|
|
bgcolor?: InputMaybe<Scalars['String']['input']>;
|
|
fill?: InputMaybe<Scalars['String']['input']>;
|
|
format?: InputMaybe<Scalars['String']['input']>;
|
|
height?: InputMaybe<Scalars['Int']['input']>;
|
|
jpegquality?: InputMaybe<Scalars['Int']['input']>;
|
|
max?: InputMaybe<Scalars['String']['input']>;
|
|
min?: InputMaybe<Scalars['String']['input']>;
|
|
preserveSvg?: InputMaybe<Scalars['Boolean']['input']>;
|
|
webpquality?: InputMaybe<Scalars['Int']['input']>;
|
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
};
|
|
|
|
|
|
export type CustomImageSrcSetArgs = {
|
|
format?: InputMaybe<Scalars['String']['input']>;
|
|
preserveSvg?: InputMaybe<Scalars['Boolean']['input']>;
|
|
sizes?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
};
|
|
|
|
export type DateBlock = StreamFieldInterface & {
|
|
__typename?: 'DateBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
|
|
export type DateBlockValueArgs = {
|
|
format?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type DateTimeBlock = StreamFieldInterface & {
|
|
__typename?: 'DateTimeBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
|
|
export type DateTimeBlockValueArgs = {
|
|
format?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type DecimalBlock = StreamFieldInterface & {
|
|
__typename?: 'DecimalBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['Float']['output'];
|
|
};
|
|
|
|
export type DocumentChooserBlock = StreamFieldInterface & {
|
|
__typename?: 'DocumentChooserBlock';
|
|
blockType: Scalars['String']['output'];
|
|
document: DocumentObjectType;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
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<Scalars['Int']['output']>;
|
|
id: Scalars['ID']['output'];
|
|
tags: Array<TagObjectType>;
|
|
title: Scalars['String']['output'];
|
|
url: Scalars['String']['output'];
|
|
};
|
|
|
|
export type EmailBlock = StreamFieldInterface & {
|
|
__typename?: 'EmailBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type EmbedBlock = StreamFieldInterface & {
|
|
__typename?: 'EmbedBlock';
|
|
blockType: Scalars['String']['output'];
|
|
embed?: Maybe<Scalars['String']['output']>;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawEmbed?: Maybe<Scalars['JSONString']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
url: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type EventCategory = {
|
|
__typename?: 'EventCategory';
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
name: Scalars['String']['output'];
|
|
pig: Scalars['String']['output'];
|
|
showInFilters: Scalars['Boolean']['output'];
|
|
slug: Scalars['String']['output'];
|
|
};
|
|
|
|
export type EventIndex = PageInterface & {
|
|
__typename?: 'EventIndex';
|
|
aliasOf?: Maybe<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
futureEvents: Array<EventPage>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
};
|
|
|
|
|
|
export type EventIndexAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventIndexChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventIndexDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventIndexFutureEventsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventIndexNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventIndexPreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventIndexSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type EventOccurrence = {
|
|
__typename?: 'EventOccurrence';
|
|
end?: Maybe<Scalars['String']['output']>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
start: Scalars['String']['output'];
|
|
venue?: Maybe<VenuePage>;
|
|
};
|
|
|
|
export type EventOrganizer = {
|
|
__typename?: 'EventOrganizer';
|
|
association?: Maybe<AssociationPage>;
|
|
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
name: Scalars['String']['output'];
|
|
slug: Scalars['String']['output'];
|
|
};
|
|
|
|
export type EventOrganizerLink = {
|
|
__typename?: 'EventOrganizerLink';
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
organizer?: Maybe<EventOrganizer>;
|
|
};
|
|
|
|
export type EventPage = PageInterface & {
|
|
__typename?: 'EventPage';
|
|
aliasOf?: Maybe<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
body?: Maybe<Array<Maybe<StreamFieldInterface>>>;
|
|
categories: Array<EventCategory>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
facebookUrl?: Maybe<Scalars['String']['output']>;
|
|
featuredImage?: Maybe<CustomImage>;
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
free?: Maybe<Scalars['Boolean']['output']>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
occurrences: Array<EventOccurrence>;
|
|
organizers: Array<EventOrganizer>;
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
pig?: Maybe<Scalars['String']['output']>;
|
|
previousSiblings: Array<PageInterface>;
|
|
priceMember?: Maybe<Scalars['Int']['output']>;
|
|
priceRegular?: Maybe<Scalars['Int']['output']>;
|
|
priceStudent?: Maybe<Scalars['Int']['output']>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
ticketUrl?: Maybe<Scalars['String']['output']>;
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
};
|
|
|
|
|
|
export type EventPageAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventPageCategoriesArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventPageChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventPageDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventPageNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventPageOccurrencesArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventPageOrganizersArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventPagePreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type EventPageSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type FeaturedBlock = StreamFieldInterface & {
|
|
__typename?: 'FeaturedBlock';
|
|
blockType: Scalars['String']['output'];
|
|
blocks: Array<StreamFieldInterface>;
|
|
featuredImageOverride?: Maybe<CustomImage>;
|
|
featuredPage: PageInterface;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
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<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['Float']['output'];
|
|
};
|
|
|
|
export type GenericPage = PageInterface & {
|
|
__typename?: 'GenericPage';
|
|
aliasOf?: Maybe<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
body?: Maybe<Array<Maybe<StreamFieldInterface>>>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
lead?: Maybe<Scalars['RichText']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
};
|
|
|
|
|
|
export type GenericPageAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type GenericPageChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type GenericPageDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type GenericPageNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type GenericPagePreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type GenericPageSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type HomePage = PageInterface & {
|
|
__typename?: 'HomePage';
|
|
aliasOf?: Maybe<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
featuredEvents: Array<EventPage>;
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
};
|
|
|
|
|
|
export type HomePageAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type HomePageChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type HomePageDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type HomePageFeaturedEventsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type HomePageNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type HomePagePreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type HomePageSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type HomePageFeaturedEvents = {
|
|
__typename?: 'HomePageFeaturedEvents';
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
};
|
|
|
|
export type HorizontalRuleBlock = StreamFieldInterface & {
|
|
__typename?: 'HorizontalRuleBlock';
|
|
blockType: Scalars['String']['output'];
|
|
blocks: Array<StreamFieldInterface>;
|
|
color?: Maybe<Scalars['String']['output']>;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
};
|
|
|
|
export type ImageChooserBlock = StreamFieldInterface & {
|
|
__typename?: 'ImageChooserBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
image: CustomImage;
|
|
rawValue: Scalars['String']['output'];
|
|
};
|
|
|
|
export type ImageSliderBlock = StreamFieldInterface & {
|
|
__typename?: 'ImageSliderBlock';
|
|
blockType: Scalars['String']['output'];
|
|
blocks: Array<StreamFieldInterface>;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
images?: Maybe<Array<Maybe<StreamFieldInterface>>>;
|
|
rawValue: Scalars['String']['output'];
|
|
};
|
|
|
|
export type ImageSliderItemBlock = StreamFieldInterface & {
|
|
__typename?: 'ImageSliderItemBlock';
|
|
blockType: Scalars['String']['output'];
|
|
blocks: Array<StreamFieldInterface>;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
image: CustomImage;
|
|
rawValue: Scalars['String']['output'];
|
|
text?: Maybe<Scalars['String']['output']>;
|
|
};
|
|
|
|
export type ImageWithTextBlock = StreamFieldInterface & {
|
|
__typename?: 'ImageWithTextBlock';
|
|
blockType: Scalars['String']['output'];
|
|
blocks: Array<StreamFieldInterface>;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
image: CustomImage;
|
|
imageFormat: Scalars['String']['output'];
|
|
rawValue: Scalars['String']['output'];
|
|
text?: Maybe<Scalars['String']['output']>;
|
|
};
|
|
|
|
export type IntegerBlock = StreamFieldInterface & {
|
|
__typename?: 'IntegerBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['Int']['output'];
|
|
};
|
|
|
|
export type ListBlock = StreamFieldInterface & {
|
|
__typename?: 'ListBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
items: Array<StreamFieldInterface>;
|
|
rawValue: Scalars['String']['output'];
|
|
};
|
|
|
|
export type NewsIndex = PageInterface & {
|
|
__typename?: 'NewsIndex';
|
|
aliasOf?: Maybe<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
lead?: Maybe<Scalars['RichText']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
};
|
|
|
|
|
|
export type NewsIndexAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type NewsIndexChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type NewsIndexDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type NewsIndexNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type NewsIndexPreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type NewsIndexSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type NewsPage = PageInterface & {
|
|
__typename?: 'NewsPage';
|
|
aliasOf?: Maybe<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
body?: Maybe<Array<Maybe<StreamFieldInterface>>>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
featuredImage?: Maybe<CustomImage>;
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
};
|
|
|
|
|
|
export type NewsPageAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type NewsPageChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type NewsPageDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type NewsPageNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type NewsPagePreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type NewsPageSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
/**
|
|
* 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<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
};
|
|
|
|
|
|
/**
|
|
* Base Page type used if one isn't generated for the current model.
|
|
* All other node types extend this.
|
|
*/
|
|
export type PageAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
/**
|
|
* Base Page type used if one isn't generated for the current model.
|
|
* All other node types extend this.
|
|
*/
|
|
export type PageChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
/**
|
|
* Base Page type used if one isn't generated for the current model.
|
|
* All other node types extend this.
|
|
*/
|
|
export type PageDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
/**
|
|
* Base Page type used if one isn't generated for the current model.
|
|
* All other node types extend this.
|
|
*/
|
|
export type PageNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
/**
|
|
* Base Page type used if one isn't generated for the current model.
|
|
* All other node types extend this.
|
|
*/
|
|
export type PagePreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
/**
|
|
* Base Page type used if one isn't generated for the current model.
|
|
* All other node types extend this.
|
|
*/
|
|
export type PageSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type PageChooserBlock = StreamFieldInterface & {
|
|
__typename?: 'PageChooserBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
page: PageInterface;
|
|
rawValue: Scalars['String']['output'];
|
|
};
|
|
|
|
export type PageInterface = {
|
|
ancestors: Array<PageInterface>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
nextSiblings: Array<PageInterface>;
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
};
|
|
|
|
|
|
export type PageInterfaceAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type PageInterfaceChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type PageInterfaceDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type PageInterfaceNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type PageInterfacePreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type PageInterfaceSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type PageSectionBlock = StreamFieldInterface & {
|
|
__typename?: 'PageSectionBlock';
|
|
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
blockType: Scalars['String']['output'];
|
|
blocks: Array<StreamFieldInterface>;
|
|
body?: Maybe<Array<Maybe<StreamFieldInterface>>>;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
};
|
|
|
|
export type Query = {
|
|
__typename?: 'Query';
|
|
associationIndex?: Maybe<AssociationIndex>;
|
|
collections: Array<Maybe<CollectionObjectType>>;
|
|
document?: Maybe<DocumentObjectType>;
|
|
documentType: Scalars['String']['output'];
|
|
documents: Array<DocumentObjectType>;
|
|
eventCategories?: Maybe<Array<Maybe<EventCategory>>>;
|
|
eventCategory?: Maybe<EventCategory>;
|
|
eventIndex?: Maybe<EventIndex>;
|
|
eventOrganizer?: Maybe<EventOrganizer>;
|
|
eventOrganizers?: Maybe<Array<Maybe<EventOrganizer>>>;
|
|
image?: Maybe<CustomImage>;
|
|
imageType: Scalars['String']['output'];
|
|
images: Array<CustomImage>;
|
|
newsIndex?: Maybe<NewsIndex>;
|
|
page?: Maybe<PageInterface>;
|
|
pages: Array<PageInterface>;
|
|
redirects: Array<Redirect>;
|
|
search: Array<Search>;
|
|
site?: Maybe<SiteObjectType>;
|
|
sites: Array<SiteObjectType>;
|
|
tag?: Maybe<TagObjectType>;
|
|
tags: Array<TagObjectType>;
|
|
};
|
|
|
|
|
|
export type QueryAssociationIndexArgs = {
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
token?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryCollectionsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryDocumentArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryDocumentsArgs = {
|
|
collection?: InputMaybe<Scalars['ID']['input']>;
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryEventCategoriesArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryEventCategoryArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryEventIndexArgs = {
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
token?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryEventOrganizerArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryEventOrganizersArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryImageArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryImagesArgs = {
|
|
collection?: InputMaybe<Scalars['ID']['input']>;
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryNewsIndexArgs = {
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
token?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryPageArgs = {
|
|
contentType?: InputMaybe<Scalars['String']['input']>;
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
inSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
site?: InputMaybe<Scalars['String']['input']>;
|
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
token?: InputMaybe<Scalars['String']['input']>;
|
|
urlPath?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryPagesArgs = {
|
|
ancestor?: InputMaybe<Scalars['ID']['input']>;
|
|
contentType?: InputMaybe<Scalars['String']['input']>;
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
inSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
parent?: InputMaybe<Scalars['ID']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
site?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QuerySearchArgs = {
|
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QuerySiteArgs = {
|
|
hostname?: InputMaybe<Scalars['String']['input']>;
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
};
|
|
|
|
|
|
export type QuerySitesArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryTagArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
};
|
|
|
|
|
|
export type QueryTagsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type RawHtmlBlock = StreamFieldInterface & {
|
|
__typename?: 'RawHTMLBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type Redirect = {
|
|
__typename?: 'Redirect';
|
|
isPermanent: Scalars['Boolean']['output'];
|
|
newUrl?: Maybe<Scalars['String']['output']>;
|
|
oldPath: Scalars['String']['output'];
|
|
oldUrl: Scalars['String']['output'];
|
|
page?: Maybe<PageInterface>;
|
|
site: SiteObjectType;
|
|
};
|
|
|
|
export type RegexBlock = StreamFieldInterface & {
|
|
__typename?: 'RegexBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
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<Scalars['String']['output']>;
|
|
focalPointKey: Scalars['String']['output'];
|
|
height: Scalars['Int']['output'];
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
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<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type Search = AssociationIndex | AssociationPage | CustomImage | EventCategory | EventIndex | EventOccurrence | EventOrganizer | EventOrganizerLink | EventPage | GenericPage | HomePage | HomePageFeaturedEvents | NewsIndex | NewsPage | Page | Rendition | VenueIndex | VenuePage;
|
|
|
|
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<PageInterface>;
|
|
pages: Array<PageInterface>;
|
|
/** 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<Scalars['String']['input']>;
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
token?: InputMaybe<Scalars['String']['input']>;
|
|
urlPath?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type SiteObjectTypePagesArgs = {
|
|
contentType?: InputMaybe<Scalars['String']['input']>;
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type StaticBlock = StreamFieldInterface & {
|
|
__typename?: 'StaticBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type StreamBlock = StreamFieldInterface & {
|
|
__typename?: 'StreamBlock';
|
|
blockType: Scalars['String']['output'];
|
|
blocks: Array<StreamFieldInterface>;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
};
|
|
|
|
export type StreamFieldBlock = StreamFieldInterface & {
|
|
__typename?: 'StreamFieldBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type StreamFieldInterface = {
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
};
|
|
|
|
export type StructBlock = StreamFieldInterface & {
|
|
__typename?: 'StructBlock';
|
|
blockType: Scalars['String']['output'];
|
|
blocks: Array<StreamFieldInterface>;
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
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<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type TimeBlock = StreamFieldInterface & {
|
|
__typename?: 'TimeBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
|
|
export type TimeBlockValueArgs = {
|
|
format?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type UrlBlock = StreamFieldInterface & {
|
|
__typename?: 'URLBlock';
|
|
blockType: Scalars['String']['output'];
|
|
field: Scalars['String']['output'];
|
|
id?: Maybe<Scalars['String']['output']>;
|
|
rawValue: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type VenueIndex = PageInterface & {
|
|
__typename?: 'VenueIndex';
|
|
aliasOf?: Maybe<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
};
|
|
|
|
|
|
export type VenueIndexAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type VenueIndexChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type VenueIndexDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type VenueIndexNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type VenueIndexPreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type VenueIndexSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type VenuePage = PageInterface & {
|
|
__typename?: 'VenuePage';
|
|
aliasOf?: Maybe<Page>;
|
|
aliases: Array<Page>;
|
|
ancestors: Array<PageInterface>;
|
|
associationindex?: Maybe<AssociationIndex>;
|
|
associationpage?: Maybe<AssociationPage>;
|
|
body?: Maybe<Array<Maybe<StreamFieldInterface>>>;
|
|
capabilityAudio?: Maybe<Scalars['String']['output']>;
|
|
capabilityAudioVideo?: Maybe<Scalars['String']['output']>;
|
|
capabilityBar?: Maybe<Scalars['String']['output']>;
|
|
capabilityLighting?: Maybe<Scalars['String']['output']>;
|
|
capacityLegal?: Maybe<Scalars['String']['output']>;
|
|
capacitySitting?: Maybe<Scalars['String']['output']>;
|
|
capacityStanding?: Maybe<Scalars['String']['output']>;
|
|
children: Array<PageInterface>;
|
|
contentType: Scalars['String']['output'];
|
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
descendants: Array<PageInterface>;
|
|
draftTitle: Scalars['String']['output'];
|
|
eventindex?: Maybe<EventIndex>;
|
|
eventpage?: Maybe<EventPage>;
|
|
expireAt?: Maybe<Scalars['DateTime']['output']>;
|
|
expired: Scalars['Boolean']['output'];
|
|
featuredImage?: Maybe<CustomImage>;
|
|
firstPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
floor?: Maybe<Scalars['String']['output']>;
|
|
genericpage?: Maybe<GenericPage>;
|
|
goLiveAt?: Maybe<Scalars['DateTime']['output']>;
|
|
hasUnpublishedChanges: Scalars['Boolean']['output'];
|
|
homepage?: Maybe<HomePage>;
|
|
id?: Maybe<Scalars['ID']['output']>;
|
|
lastPublishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
latestRevisionCreatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
live: Scalars['Boolean']['output'];
|
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
lockedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
newsindex?: Maybe<NewsIndex>;
|
|
newspage?: Maybe<NewsPage>;
|
|
nextSiblings: Array<PageInterface>;
|
|
numchild: Scalars['Int']['output'];
|
|
pageType?: Maybe<Scalars['String']['output']>;
|
|
parent?: Maybe<PageInterface>;
|
|
path: Scalars['String']['output'];
|
|
preposition?: Maybe<Scalars['String']['output']>;
|
|
previousSiblings: Array<PageInterface>;
|
|
searchDescription?: Maybe<Scalars['String']['output']>;
|
|
searchScore?: Maybe<Scalars['Float']['output']>;
|
|
seoTitle: Scalars['String']['output'];
|
|
showAsBookable?: Maybe<Scalars['Boolean']['output']>;
|
|
showInMenus: Scalars['Boolean']['output'];
|
|
siblings: Array<PageInterface>;
|
|
sitesRootedHere: Array<SiteObjectType>;
|
|
slug: Scalars['String']['output'];
|
|
title: Scalars['String']['output'];
|
|
translationKey: Scalars['UUID']['output'];
|
|
url?: Maybe<Scalars['String']['output']>;
|
|
urlPath: Scalars['String']['output'];
|
|
venueindex?: Maybe<VenueIndex>;
|
|
venuepage?: Maybe<VenuePage>;
|
|
};
|
|
|
|
|
|
export type VenuePageAncestorsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type VenuePageChildrenArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type VenuePageDescendantsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type VenuePageNextSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type VenuePagePreviousSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
|
|
export type VenuePageSiblingsArgs = {
|
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
limit?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
offset?: InputMaybe<Scalars['PositiveInt']['input']>;
|
|
order?: InputMaybe<Scalars['String']['input']>;
|
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
export type GenericFragment = { __typename: 'GenericPage', id?: string | null, urlPath: string, title: string, lead?: any | null, body?: Array<(
|
|
{ __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?: '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?: '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?: '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?: '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?: '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 } & { ' $fragmentName'?: 'GenericFragment' };
|
|
|
|
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?: '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?: 'VenueIndex', id?: string | null, urlPath: string } | { __typename?: 'VenuePage', id?: string | null, urlPath: string }> };
|
|
|
|
export type GenericPageByUrlQueryVariables = Exact<{
|
|
urlPath: Scalars['String']['input'];
|
|
}>;
|
|
|
|
|
|
export type GenericPageByUrlQuery = { __typename?: 'Query', page?: { __typename?: 'AssociationIndex' } | { __typename?: 'AssociationPage' } | { __typename?: 'EventIndex' } | { __typename?: 'EventPage' } | (
|
|
{ __typename?: 'GenericPage' }
|
|
& { ' $fragmentRefs'?: { 'GenericFragment': GenericFragment } }
|
|
) | { __typename?: 'HomePage' } | { __typename?: 'NewsIndex' } | { __typename?: 'NewsPage' } | { __typename?: 'Page' } | { __typename?: 'VenueIndex' } | { __typename?: 'VenuePage' } | 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?: '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?: 'VenueIndex', id?: string | null, slug: string } | { __typename?: 'VenuePage', id?: string | null, slug: string }> };
|
|
|
|
export type NewsBySlugQueryVariables = Exact<{
|
|
slug: Scalars['String']['input'];
|
|
}>;
|
|
|
|
|
|
export type NewsBySlugQuery = { __typename?: 'Query', news?: { __typename?: 'AssociationIndex' } | { __typename?: 'AssociationPage' } | { __typename?: 'EventIndex' } | { __typename?: 'EventPage' } | { __typename?: 'GenericPage' } | { __typename?: 'HomePage' } | { __typename?: 'NewsIndex' } | (
|
|
{ __typename?: 'NewsPage' }
|
|
& { ' $fragmentRefs'?: { 'NewsFragment': NewsFragment } }
|
|
) | { __typename?: 'Page' } | { __typename?: 'VenueIndex' } | { __typename?: 'VenuePage' } | 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?: '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?: 'VenueIndex', id?: string | null, slug: string } | { __typename?: 'VenuePage', id?: string | null, slug: string }> };
|
|
|
|
export type EventBySlugQueryVariables = Exact<{
|
|
slug: Scalars['String']['input'];
|
|
}>;
|
|
|
|
|
|
export type EventBySlugQuery = { __typename?: 'Query', event?: { __typename?: 'AssociationIndex' } | { __typename?: 'AssociationPage' } | { __typename?: 'EventIndex' } | (
|
|
{ __typename?: 'EventPage' }
|
|
& { ' $fragmentRefs'?: { 'EventFragment': EventFragment } }
|
|
) | { __typename?: 'GenericPage' } | { __typename?: 'HomePage' } | { __typename?: 'NewsIndex' } | { __typename?: 'NewsPage' } | { __typename?: 'Page' } | { __typename?: 'VenueIndex' } | { __typename?: 'VenuePage' } | 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?: '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?: 'VenueIndex', id?: string | null, slug: string } | { __typename?: 'VenuePage', id?: string | null, slug: string }> };
|
|
|
|
export type AssociationBySlugQueryVariables = Exact<{
|
|
slug: Scalars['String']['input'];
|
|
}>;
|
|
|
|
|
|
export type AssociationBySlugQuery = { __typename?: 'Query', association?: { __typename?: 'AssociationIndex' } | (
|
|
{ __typename?: 'AssociationPage' }
|
|
& { ' $fragmentRefs'?: { 'AssociationFragment': AssociationFragment } }
|
|
) | { __typename?: 'EventIndex' } | { __typename?: 'EventPage' } | { __typename?: 'GenericPage' } | { __typename?: 'HomePage' } | { __typename?: 'NewsIndex' } | { __typename?: 'NewsPage' } | { __typename?: 'Page' } | { __typename?: 'VenueIndex' } | { __typename?: 'VenuePage' } | null };
|
|
|
|
export type AssociationIndexFragment = { __typename?: 'AssociationIndex', title: string, lead?: any | null, body?: Array<(
|
|
{ __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?: '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?: '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?: '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?: '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?: '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 } & { ' $fragmentName'?: 'AssociationIndexFragment' };
|
|
|
|
export type AssociationFragment = { __typename: 'AssociationPage', id?: string | null, slug: string, title: string, excerpt?: string | null, associationType?: string | null, websiteUrl?: string | null, body?: Array<(
|
|
{ __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?: '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?: '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?: '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?: '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?: '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 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?: 'EventIndex' } | { __typename?: 'EventPage' } | { __typename?: 'GenericPage' } | { __typename?: 'HomePage' } | { __typename?: 'NewsIndex' } | { __typename?: 'NewsPage' } | { __typename?: 'Page' } | { __typename?: 'VenueIndex' } | { __typename?: 'VenuePage' }> };
|
|
|
|
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?: '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?: 'VenueIndex', id?: string | null, slug: string } | { __typename?: 'VenuePage', id?: string | null, slug: string }> };
|
|
|
|
export type VenueBySlugQueryVariables = Exact<{
|
|
slug: Scalars['String']['input'];
|
|
}>;
|
|
|
|
|
|
export type VenueBySlugQuery = { __typename?: 'Query', venue?: { __typename?: 'AssociationIndex' } | { __typename?: 'AssociationPage' } | { __typename?: 'EventIndex' } | { __typename?: 'EventPage' } | { __typename?: 'GenericPage' } | { __typename?: 'HomePage' } | { __typename?: 'NewsIndex' } | { __typename?: 'NewsPage' } | { __typename?: 'Page' } | { __typename?: 'VenueIndex' } | (
|
|
{ __typename?: 'VenuePage' }
|
|
& { ' $fragmentRefs'?: { 'VenueFragment': VenueFragment } }
|
|
) | null };
|
|
|
|
export type VenueFragment = { __typename: 'VenuePage', id?: string | null, slug: string, title: string, showAsBookable?: boolean | null, floor?: string | null, preposition?: string | null, capabilityAudio?: string | null, capabilityAudioVideo?: string | null, capabilityBar?: string | null, capabilityLighting?: string | null, capacityLegal?: string | null, capacityStanding?: string | null, capacitySitting?: string | null, body?: Array<(
|
|
{ __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?: '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?: '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?: '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?: '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?: '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 AllVenuesQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
|
|
|
export type AllVenuesQuery = { __typename?: 'Query', venues: Array<{ __typename?: 'AssociationIndex' } | { __typename?: 'AssociationPage' } | { __typename?: 'EventIndex' } | { __typename?: 'EventPage' } | { __typename?: 'GenericPage' } | { __typename?: 'HomePage' } | { __typename?: 'NewsIndex' } | { __typename?: 'NewsPage' } | { __typename?: 'Page' } | { __typename?: 'VenueIndex' } | (
|
|
{ __typename?: 'VenuePage' }
|
|
& { ' $fragmentRefs'?: { 'VenueFragment': VenueFragment } }
|
|
)> };
|
|
|
|
export type HomeFragment = { __typename?: 'HomePage', featuredEvents: Array<{ __typename?: 'EventPage', 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?: 'EventIndex' } | { __typename?: 'EventPage' } | { __typename?: 'GenericPage' } | (
|
|
{ __typename?: 'HomePage' }
|
|
& { ' $fragmentRefs'?: { 'HomeFragment': HomeFragment } }
|
|
) | { __typename?: 'NewsIndex' } | { __typename?: 'NewsPage' } | { __typename?: 'Page' } | { __typename?: 'VenueIndex' } | { __typename?: 'VenuePage' } | null, news: Array<{ __typename?: 'AssociationIndex' } | { __typename?: 'AssociationPage' } | { __typename?: 'EventIndex' } | { __typename?: 'EventPage' } | { __typename?: 'GenericPage' } | { __typename?: 'HomePage' } | { __typename?: 'NewsIndex' } | (
|
|
{ __typename?: 'NewsPage' }
|
|
& { ' $fragmentRefs'?: { 'NewsFragment': NewsFragment } }
|
|
) | { __typename?: 'Page' } | { __typename?: 'VenueIndex' } | { __typename?: 'VenuePage' }> };
|
|
|
|
export type RichTextBlockFragment = { __typename?: 'RichTextBlock', rawValue: string, value: string } & { ' $fragmentName'?: 'RichTextBlockFragment' };
|
|
|
|
export type ImageWithTextBlockFragment = { __typename?: 'ImageWithTextBlock', imageFormat: string, text?: string | null, image: (
|
|
{ __typename?: 'CustomImage' }
|
|
& { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } }
|
|
) } & { ' $fragmentName'?: 'ImageWithTextBlockFragment' };
|
|
|
|
export type ImageSliderBlockFragment = { __typename?: 'ImageSliderBlock', images?: Array<{ __typename?: 'BlockQuoteBlock' } | { __typename?: 'BooleanBlock' } | { __typename?: 'CharBlock' } | { __typename?: 'ChoiceBlock' } | { __typename?: 'DateBlock' } | { __typename?: 'DateTimeBlock' } | { __typename?: 'DecimalBlock' } | { __typename?: 'DocumentChooserBlock' } | { __typename?: 'EmailBlock' } | { __typename?: 'EmbedBlock' } | { __typename?: 'FeaturedBlock' } | { __typename?: 'FloatBlock' } | { __typename?: 'HorizontalRuleBlock' } | { __typename?: 'ImageChooserBlock' } | { __typename?: 'ImageSliderBlock' } | { __typename?: 'ImageSliderItemBlock', text?: string | null, image: (
|
|
{ __typename?: 'CustomImage' }
|
|
& { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } }
|
|
) } | { __typename?: 'ImageWithTextBlock' } | { __typename?: 'IntegerBlock' } | { __typename?: 'ListBlock' } | { __typename?: 'PageChooserBlock' } | { __typename?: 'PageSectionBlock' } | { __typename?: 'RawHTMLBlock' } | { __typename?: 'RegexBlock' } | { __typename?: 'RichTextBlock' } | { __typename?: 'StaticBlock' } | { __typename?: 'StreamBlock' } | { __typename?: 'StreamFieldBlock' } | { __typename?: 'StructBlock' } | { __typename?: 'TextBlock' } | { __typename?: 'TimeBlock' } | { __typename?: 'URLBlock' } | null> | null } & { ' $fragmentName'?: 'ImageSliderBlockFragment' };
|
|
|
|
export type HorizontalRuleBlockFragment = { __typename?: 'HorizontalRuleBlock', color?: string | null } & { ' $fragmentName'?: 'HorizontalRuleBlockFragment' };
|
|
|
|
export type FeaturedBlockFragment = { __typename?: 'FeaturedBlock', title: string, linkText: string, imagePosition: 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?: '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?: 'VenueIndex', contentType: string, pageType?: string | null, url?: string | null } | { __typename?: 'VenuePage', contentType: string, pageType?: string | null, url?: string | null }, featuredImageOverride?: (
|
|
{ __typename?: 'CustomImage' }
|
|
& { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } }
|
|
) | null } & { ' $fragmentName'?: 'FeaturedBlockFragment' };
|
|
|
|
type OneLevelOfBlocks_BlockQuoteBlock_Fragment = { __typename?: 'BlockQuoteBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_BlockQuoteBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_BooleanBlock_Fragment = { __typename?: 'BooleanBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_BooleanBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_CharBlock_Fragment = { __typename?: 'CharBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_CharBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_ChoiceBlock_Fragment = { __typename?: 'ChoiceBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_ChoiceBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_DateBlock_Fragment = { __typename?: 'DateBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_DateBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_DateTimeBlock_Fragment = { __typename?: 'DateTimeBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_DateTimeBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_DecimalBlock_Fragment = { __typename?: 'DecimalBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_DecimalBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_DocumentChooserBlock_Fragment = { __typename?: 'DocumentChooserBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_DocumentChooserBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_EmailBlock_Fragment = { __typename?: 'EmailBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_EmailBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_EmbedBlock_Fragment = { __typename?: 'EmbedBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_EmbedBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_FeaturedBlock_Fragment = (
|
|
{ __typename?: 'FeaturedBlock', id?: string | null, blockType: string, field: string }
|
|
& { ' $fragmentRefs'?: { 'FeaturedBlockFragment': FeaturedBlockFragment } }
|
|
) & { ' $fragmentName'?: 'OneLevelOfBlocks_FeaturedBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_FloatBlock_Fragment = { __typename?: 'FloatBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_FloatBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_HorizontalRuleBlock_Fragment = (
|
|
{ __typename?: 'HorizontalRuleBlock', id?: string | null, blockType: string, field: string }
|
|
& { ' $fragmentRefs'?: { 'HorizontalRuleBlockFragment': HorizontalRuleBlockFragment } }
|
|
) & { ' $fragmentName'?: 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_ImageChooserBlock_Fragment = { __typename?: 'ImageChooserBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageChooserBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_ImageSliderBlock_Fragment = (
|
|
{ __typename?: 'ImageSliderBlock', id?: string | null, blockType: string, field: string }
|
|
& { ' $fragmentRefs'?: { 'ImageSliderBlockFragment': ImageSliderBlockFragment } }
|
|
) & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageSliderBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_ImageSliderItemBlock_Fragment = { __typename?: 'ImageSliderItemBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageSliderItemBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_ImageWithTextBlock_Fragment = (
|
|
{ __typename?: 'ImageWithTextBlock', id?: string | null, blockType: string, field: string }
|
|
& { ' $fragmentRefs'?: { 'ImageWithTextBlockFragment': ImageWithTextBlockFragment } }
|
|
) & { ' $fragmentName'?: 'OneLevelOfBlocks_ImageWithTextBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_IntegerBlock_Fragment = { __typename?: 'IntegerBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_IntegerBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_ListBlock_Fragment = { __typename?: 'ListBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_ListBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_PageChooserBlock_Fragment = { __typename?: 'PageChooserBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_PageChooserBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_PageSectionBlock_Fragment = { __typename?: 'PageSectionBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_PageSectionBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_RawHtmlBlock_Fragment = { __typename?: 'RawHTMLBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_RawHtmlBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_RegexBlock_Fragment = { __typename?: 'RegexBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_RegexBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_RichTextBlock_Fragment = (
|
|
{ __typename?: 'RichTextBlock', id?: string | null, blockType: string, field: string }
|
|
& { ' $fragmentRefs'?: { 'RichTextBlockFragment': RichTextBlockFragment } }
|
|
) & { ' $fragmentName'?: 'OneLevelOfBlocks_RichTextBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_StaticBlock_Fragment = { __typename?: 'StaticBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_StaticBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_StreamBlock_Fragment = { __typename?: 'StreamBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_StreamBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_StreamFieldBlock_Fragment = { __typename?: 'StreamFieldBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_StreamFieldBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_StructBlock_Fragment = { __typename?: 'StructBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_StructBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_TextBlock_Fragment = { __typename?: 'TextBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_TextBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_TimeBlock_Fragment = { __typename?: 'TimeBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_TimeBlock_Fragment' };
|
|
|
|
type OneLevelOfBlocks_UrlBlock_Fragment = { __typename?: 'URLBlock', id?: string | null, blockType: string, field: string } & { ' $fragmentName'?: 'OneLevelOfBlocks_UrlBlock_Fragment' };
|
|
|
|
export type OneLevelOfBlocksFragment = OneLevelOfBlocks_BlockQuoteBlock_Fragment | OneLevelOfBlocks_BooleanBlock_Fragment | OneLevelOfBlocks_CharBlock_Fragment | OneLevelOfBlocks_ChoiceBlock_Fragment | OneLevelOfBlocks_DateBlock_Fragment | OneLevelOfBlocks_DateTimeBlock_Fragment | OneLevelOfBlocks_DecimalBlock_Fragment | OneLevelOfBlocks_DocumentChooserBlock_Fragment | OneLevelOfBlocks_EmailBlock_Fragment | OneLevelOfBlocks_EmbedBlock_Fragment | OneLevelOfBlocks_FeaturedBlock_Fragment | OneLevelOfBlocks_FloatBlock_Fragment | OneLevelOfBlocks_HorizontalRuleBlock_Fragment | OneLevelOfBlocks_ImageChooserBlock_Fragment | OneLevelOfBlocks_ImageSliderBlock_Fragment | OneLevelOfBlocks_ImageSliderItemBlock_Fragment | OneLevelOfBlocks_ImageWithTextBlock_Fragment | OneLevelOfBlocks_IntegerBlock_Fragment | OneLevelOfBlocks_ListBlock_Fragment | OneLevelOfBlocks_PageChooserBlock_Fragment | OneLevelOfBlocks_PageSectionBlock_Fragment | OneLevelOfBlocks_RawHtmlBlock_Fragment | OneLevelOfBlocks_RegexBlock_Fragment | OneLevelOfBlocks_RichTextBlock_Fragment | OneLevelOfBlocks_StaticBlock_Fragment | OneLevelOfBlocks_StreamBlock_Fragment | OneLevelOfBlocks_StreamFieldBlock_Fragment | OneLevelOfBlocks_StructBlock_Fragment | OneLevelOfBlocks_TextBlock_Fragment | OneLevelOfBlocks_TimeBlock_Fragment | OneLevelOfBlocks_UrlBlock_Fragment;
|
|
|
|
type Blocks_BlockQuoteBlock_Fragment = (
|
|
{ __typename?: 'BlockQuoteBlock' }
|
|
& { ' $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_CharBlock_Fragment = (
|
|
{ __typename?: 'CharBlock' }
|
|
& { ' $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_DateBlock_Fragment = (
|
|
{ __typename?: 'DateBlock' }
|
|
& { ' $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_DecimalBlock_Fragment = (
|
|
{ __typename?: 'DecimalBlock' }
|
|
& { ' $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_EmailBlock_Fragment = (
|
|
{ __typename?: 'EmailBlock' }
|
|
& { ' $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_FeaturedBlock_Fragment = (
|
|
{ __typename?: 'FeaturedBlock' }
|
|
& { ' $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_HorizontalRuleBlock_Fragment = (
|
|
{ __typename?: 'HorizontalRuleBlock' }
|
|
& { ' $fragmentRefs'?: { 'OneLevelOfBlocks_HorizontalRuleBlock_Fragment': OneLevelOfBlocks_HorizontalRuleBlock_Fragment } }
|
|
) & { ' $fragmentName'?: 'Blocks_HorizontalRuleBlock_Fragment' };
|
|
|
|
type Blocks_ImageChooserBlock_Fragment = (
|
|
{ __typename?: 'ImageChooserBlock' }
|
|
& { ' $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_ImageSliderItemBlock_Fragment = (
|
|
{ __typename?: 'ImageSliderItemBlock' }
|
|
& { ' $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_IntegerBlock_Fragment = (
|
|
{ __typename?: 'IntegerBlock' }
|
|
& { ' $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_PageChooserBlock_Fragment = (
|
|
{ __typename?: 'PageChooserBlock' }
|
|
& { ' $fragmentRefs'?: { 'OneLevelOfBlocks_PageChooserBlock_Fragment': OneLevelOfBlocks_PageChooserBlock_Fragment } }
|
|
) & { ' $fragmentName'?: 'Blocks_PageChooserBlock_Fragment' };
|
|
|
|
type Blocks_PageSectionBlock_Fragment = (
|
|
{ __typename?: 'PageSectionBlock', title: string, backgroundColor?: string | null, body?: Array<(
|
|
{ __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?: '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?: '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?: '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?: '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?: '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 }
|
|
& { ' $fragmentRefs'?: { '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_RegexBlock_Fragment = (
|
|
{ __typename?: 'RegexBlock' }
|
|
& { ' $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_StaticBlock_Fragment = (
|
|
{ __typename?: 'StaticBlock' }
|
|
& { ' $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_StreamFieldBlock_Fragment = (
|
|
{ __typename?: 'StreamFieldBlock' }
|
|
& { ' $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_TextBlock_Fragment = (
|
|
{ __typename?: 'TextBlock' }
|
|
& { ' $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_UrlBlock_Fragment = (
|
|
{ __typename?: 'URLBlock' }
|
|
& { ' $fragmentRefs'?: { 'OneLevelOfBlocks_UrlBlock_Fragment': OneLevelOfBlocks_UrlBlock_Fragment } }
|
|
) & { ' $fragmentName'?: 'Blocks_UrlBlock_Fragment' };
|
|
|
|
export type BlocksFragment = Blocks_BlockQuoteBlock_Fragment | Blocks_BooleanBlock_Fragment | Blocks_CharBlock_Fragment | Blocks_ChoiceBlock_Fragment | Blocks_DateBlock_Fragment | Blocks_DateTimeBlock_Fragment | Blocks_DecimalBlock_Fragment | Blocks_DocumentChooserBlock_Fragment | Blocks_EmailBlock_Fragment | Blocks_EmbedBlock_Fragment | Blocks_FeaturedBlock_Fragment | Blocks_FloatBlock_Fragment | Blocks_HorizontalRuleBlock_Fragment | Blocks_ImageChooserBlock_Fragment | Blocks_ImageSliderBlock_Fragment | Blocks_ImageSliderItemBlock_Fragment | Blocks_ImageWithTextBlock_Fragment | Blocks_IntegerBlock_Fragment | Blocks_ListBlock_Fragment | Blocks_PageChooserBlock_Fragment | Blocks_PageSectionBlock_Fragment | Blocks_RawHtmlBlock_Fragment | Blocks_RegexBlock_Fragment | Blocks_RichTextBlock_Fragment | Blocks_StaticBlock_Fragment | Blocks_StreamBlock_Fragment | Blocks_StreamFieldBlock_Fragment | Blocks_StructBlock_Fragment | Blocks_TextBlock_Fragment | Blocks_TimeBlock_Fragment | 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 EventFragment = { __typename: 'EventPage', id?: string | null, slug: string, title: string, pig?: string | null, facebookUrl?: string | null, ticketUrl?: string | null, free?: boolean | null, priceRegular?: number | null, priceMember?: number | null, priceStudent?: number | null, body?: Array<{ __typename?: 'BlockQuoteBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'BooleanBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'CharBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'ChoiceBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'DateBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'DateTimeBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'DecimalBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'DocumentChooserBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'EmailBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'EmbedBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'FeaturedBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'FloatBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'HorizontalRuleBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'ImageChooserBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'ImageSliderBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'ImageSliderItemBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'ImageWithTextBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'IntegerBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'ListBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'PageChooserBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'PageSectionBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'RawHTMLBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'RegexBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'RichTextBlock', rawValue: string, value: string, id?: string | null, blockType: string, field: string } | { __typename?: 'StaticBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'StreamBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'StreamFieldBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'StructBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'TextBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'TimeBlock', id?: string | null, blockType: string, field: string } | { __typename?: 'URLBlock', id?: string | null, blockType: string, field: string } | 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, 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 FutureEventsQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
|
|
|
export type FutureEventsQuery = { __typename?: 'Query', 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, externalUrl?: string | null, association?: { __typename?: 'AssociationPage', url?: string | null } | null } | null> | null };
|
|
|
|
export type NewsFragment = { __typename: 'NewsPage', id?: string | null, slug: string, title: string, firstPublishedAt?: any | null, excerpt?: string | null, featuredImage?: (
|
|
{ __typename?: 'CustomImage' }
|
|
& { ' $fragmentRefs'?: { 'ImageFragment': ImageFragment } }
|
|
) | null, body?: Array<(
|
|
{ __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?: '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?: '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?: '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?: '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?: '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 } & { ' $fragmentName'?: 'NewsFragment' };
|
|
|
|
export type NewsIndexFragment = { __typename: 'NewsIndex', id?: string | null, slug: string, title: string, lead?: any | 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?: 'EventIndex' } | { __typename?: 'EventPage' } | { __typename?: 'GenericPage' } | { __typename?: 'HomePage' } | { __typename?: 'NewsIndex' } | (
|
|
{ __typename?: 'NewsPage' }
|
|
& { ' $fragmentRefs'?: { 'NewsFragment': NewsFragment } }
|
|
) | { __typename?: 'Page' } | { __typename?: 'VenueIndex' } | { __typename?: 'VenuePage' }> };
|
|
|
|
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<RichTextBlockFragment, unknown>;
|
|
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<ImageFragment, unknown>;
|
|
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<ImageWithTextBlockFragment, unknown>;
|
|
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":"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":"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<ImageSliderBlockFragment, unknown>;
|
|
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<HorizontalRuleBlockFragment, unknown>;
|
|
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":"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<FeaturedBlockFragment, unknown>;
|
|
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":"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":"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":"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":"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":"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":"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"}}]}}]}}]} as unknown as DocumentNode<OneLevelOfBlocksFragment, unknown>;
|
|
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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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"}}]}}]}}]} as unknown as DocumentNode<BlocksFragment, unknown>;
|
|
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":"title"}},{"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode<GenericFragment, unknown>;
|
|
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":"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode<AssociationIndexFragment, unknown>;
|
|
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":"excerpt"}},{"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode<AssociationFragment, unknown>;
|
|
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":"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":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"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":"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode<VenueFragment, unknown>;
|
|
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<HomeFragment, unknown>;
|
|
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":"title"}},{"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":"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":"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"},"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":"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"}}]}}]} as unknown as DocumentNode<EventFragment, unknown>;
|
|
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":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"OneLevelOfBlocks"}}]}}]} as unknown as DocumentNode<NewsFragment, unknown>;
|
|
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":"title"}},{"kind":"Field","name":{"kind":"Name","value":"lead"}}]}}]} as unknown as DocumentNode<NewsIndexFragment, unknown>;
|
|
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<AllGenericSlugsQuery, AllGenericSlugsQueryVariables>;
|
|
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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"title"}},{"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<GenericPageByUrlQuery, GenericPageByUrlQueryVariables>;
|
|
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<AllNewsSlugsQuery, AllNewsSlugsQueryVariables>;
|
|
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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"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<NewsBySlugQuery, NewsBySlugQueryVariables>;
|
|
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<AllEventSlugsQuery, AllEventSlugsQueryVariables>;
|
|
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":"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":"title"}},{"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":"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":"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"},"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":"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<EventBySlugQuery, EventBySlugQueryVariables>;
|
|
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<AllAssociationSlugsQuery, AllAssociationSlugsQueryVariables>;
|
|
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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"excerpt"}},{"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<AssociationBySlugQuery, AssociationBySlugQueryVariables>;
|
|
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}}],"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"excerpt"}},{"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<AllAssociationsQuery, AllAssociationsQueryVariables>;
|
|
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}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]} as unknown as DocumentNode<AllVenueSlugsQuery, AllVenueSlugsQueryVariables>;
|
|
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":"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"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<VenueBySlugQuery, VenueBySlugQueryVariables>;
|
|
export const AllVenuesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"allVenues"},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"preposition"}},{"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<AllVenuesQuery, AllVenuesQueryVariables>;
|
|
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":"limit"},"value":{"kind":"IntValue","value":"3"}}],"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"title"}},{"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":"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":"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"},"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":"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":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"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<HomeQuery, HomeQueryVariables>;
|
|
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":"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"},"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"},"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":"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":"title"}},{"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":"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":"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"},"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":"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<FutureEventsQuery, FutureEventsQueryVariables>;
|
|
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}}],"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":"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":"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":"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":"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":"OneLevelOfBlocks"},"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":"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":"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":"body"},"selectionSet":{"kind":"SelectionSet","selections":[{"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":"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":"title"}},{"kind":"Field","name":{"kind":"Name","value":"firstPublishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"excerpt"}},{"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<NewsQuery, NewsQueryVariables>; |